alicloud_slb_acl_entry_attachment

For information about acl entry attachment and how to use it, see Configure an acl entry.

Example Usage

resource "alicloud_slb_acl" "attachment" {
  name       = "forSlbAclEntryAttachment"
  ip_version = "ipv4"
}

resource "alicloud_slb_acl_entry_attachment" "attachment" {
  acl_id  = alicloud_slb_acl.attachment.id
  entry   = "168.10.10.0/24"
  comment = "second"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

Acl entry attachment can be imported using the id, e.g.

$ terraform import alicloud_slb_acl_entry_attachment.example <acl_id>:<entry>