alicloud_ga_acl_entry_attachment

Provides a Global Accelerator (GA) Acl entry attachment resource.

For information about Global Accelerator (GA) Acl entry attachment and how to use it, see What is Acl entry attachment.

Example Usage

Basic Usage

resource "alicloud_ga_acl" "default" {
  acl_name           = "tf-example-value"
  address_ip_version = "IPv4"
}

resource "alicloud_ga_acl_entry_attachment" "default" {
  acl_id            = alicloud_ga_acl.default.id
  entry             = "192.168.1.1/32"
  entry_description = "tf-example-value"
}

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

Global Accelerator (GA) Acl entry attachment can be imported using the id.Format to <acl_id>:<entry>, e.g.

$ terraform import alicloud_ga_acl_entry_attachment.example your_acl_id:your_entry