alicloud_simple_application_server_firewall_rule
更新时间:
Provides a Simple Application Server Firewall Rule resource.
For information about Simple Application Server Firewall Rule and how to use it, see What is Firewall Rule.
-> NOTE: Available since v1.143.0.
Example Usage
Basic Usage
provider "alicloud" {
region = "cn-hangzhou"
}
variable "name" {
default = "tf_example"
}
data "alicloud_simple_application_server_images" "default" {}
data "alicloud_simple_application_server_plans" "default" {}
resource "alicloud_simple_application_server_instance" "default" {
payment_type = "Subscription"
plan_id = data.alicloud_simple_application_server_plans.default.plans.0.id
instance_name = var.name
image_id = data.alicloud_simple_application_server_images.default.images.0.id
period = 1
data_disk_size = 100
}
resource "alicloud_simple_application_server_firewall_rule" "default" {
instance_id = alicloud_simple_application_server_instance.default.id
rule_protocol = "Tcp"
port = "9999"
remark = var.name
}
Argument Reference
The following arguments are supported:
instance_id
- (Required, ForceNew) Alibaba Cloud simple application server instance ID.port
- (Required, ForceNew) The port range. Valid values of port numbers:1
to65535
. Specify a port range in the format of<start port number>/<end port number>
. Example:1024/1055
, which indicates the port range of1024
through1055
.remark
- (Optional, ForceNew) The remarks of the firewall rule.rule_protocol
- (Required, ForceNew) The transport layer protocol. Valid values:Tcp
,Udp
,TcpAndUdp
.
Attributes Reference
The following attributes are exported:
firewall_rule_id
- The ID of the firewall rule.id
- The resource ID of Firewall Rule. The value formats as<instance_id>:<firewall_rule_id>
.
Import
Simple Application Server Firewall Rule can be imported using the id, e.g.
$ terraform import alicloud_simple_application_server_firewall_rule.example <instance_id>:<firewall_rule_id>
文档内容是否对您有帮助?