alicloud_cloud_firewall_control_policy_order
更新时间:
Provides a Cloud Firewall Control Policy Order resource.
For information about Cloud Firewall Control Policy Order and how to use it, see What is Control Policy Order.
-> NOTE: Available since v1.130.0.
Example Usage
Basic Usage
variable "name" {
default = "terraform-example"
}
resource "alicloud_cloud_firewall_control_policy" "default" {
direction = "in"
application_name = "ANY"
description = var.name
acl_action = "accept"
source = "127.0.0.1/32"
source_type = "net"
destination = "127.0.0.2/32"
destination_type = "net"
proto = "ANY"
}
resource "alicloud_cloud_firewall_control_policy_order" "default" {
acl_uuid = alicloud_cloud_firewall_control_policy.default.acl_uuid
direction = alicloud_cloud_firewall_control_policy.default.direction
order = 1
}
Argument Reference
The following arguments are supported:
acl_uuid
- (Required, ForceNew) The unique ID of the access control policy.direction
- (Required, ForceNew) The direction of the traffic to which the access control policy applies. Valid values:in
,out
.order
- (Required, Int) The priority of the access control policy. The priority value starts from 1. A small priority value indicates a high priority. NOTE: The value of-1
indicates the lowest priority. -> NOTE: From version 1.227.1,order
must be set.
Attributes Reference
The following attributes are exported:
id
- The resource ID in terraform of Control Policy Order. It formats as<acl_uuid>:<direction>
.
Import
Cloud Firewall Control Policy Order can be imported using the id, e.g.
$ terraform import alicloud_cloud_firewall_control_policy_order.example <acl_uuid>:<direction>
文档内容是否对您有帮助?