alicloud_ddosbgp_instances
更新时间:
This data source provides a list of Anti-DDoS Advanced instances in an Alibaba Cloud account according to the specified filters.
-> NOTE: Available in v1.183.0+ .
Example Usage
provider "alicloud" {
region = "cn-beijing"
}
variable "name" {
default = "tf-example"
}
resource "alicloud_ddosbgp_instance" "instance" {
name = var.name
base_bandwidth = 20
bandwidth = -1
ip_count = 100
ip_type = "IPv4"
normal_bandwidth = 100
type = "Enterprise"
}
data "alicloud_ddosbgp_instances" "instance" {
name_regex = "ddosbgp"
}
output "instance" {
value = data.alicloud_ddosbgp_instances.instance.*.id
}
Argument Reference
The following arguments are supported:
name_regex- (Optional) A regex string to filter results by the instance name.ids- (Optional) A list of instance IDs.output_file- (Optional) File name where to save data source results (after runningterraform plan).
Attributes Reference
The following attributes are exported in addition to the arguments listed above:
ids- A list of instance IDs.names- A list of instance names.instances- A list of apis. Each element contains the following attributes:id- The instance's id.name- The instance's remark.type- The instance's type.region- The instance's region.base_bandwidth- The instance's base defend bandwidth.bandwidth- The instance's elastic defend bandwidth.ip_type- The instance's IP version.ip_count- The instance's count of ip config.normal_bandwidth- Normal defend bandwidth of the instance. The unit is Gbps.
该文章对您有帮助吗?