You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"alicloud_security_group_rule" {
source="./modules/alicloud/r/alicloud_security_group_rule"# cidr_ip - (optional) is a type of stringcidr_ip=null# description - (optional) is a type of stringdescription=null# ip_protocol - (required) is a type of stringip_protocol=null# nic_type - (optional) is a type of stringnic_type=null# policy - (optional) is a type of stringpolicy=null# port_range - (optional) is a type of stringport_range=null# priority - (optional) is a type of numberpriority=null# security_group_id - (required) is a type of stringsecurity_group_id=null# source_group_owner_account - (optional) is a type of stringsource_group_owner_account=null# source_security_group_id - (optional) is a type of stringsource_security_group_id=null# type - (required) is a type of stringtype=null
}
resource"alicloud_security_group_rule""this" {
# cidr_ip - (optional) is a type of stringcidr_ip=var.cidr_ip# description - (optional) is a type of stringdescription=var.description# ip_protocol - (required) is a type of stringip_protocol=var.ip_protocol# nic_type - (optional) is a type of stringnic_type=var.nic_type# policy - (optional) is a type of stringpolicy=var.policy# port_range - (optional) is a type of stringport_range=var.port_range# priority - (optional) is a type of numberpriority=var.priority# security_group_id - (required) is a type of stringsecurity_group_id=var.security_group_id# source_group_owner_account - (optional) is a type of stringsource_group_owner_account=var.source_group_owner_account# source_security_group_id - (optional) is a type of stringsource_security_group_id=var.source_security_group_id# type - (required) is a type of stringtype=var.type
}