» alicloud_vpcs

This data source provides VPCs available to the user.

» Example Usage

data "alicloud_vpcs" "vpcs_ds"{
  cidr_block = "172.16.0.0/12"
  status = "Available"
  name_regex = "^foo"
}

output "first_vpc_id" {
  value = "${data.alicloud_vpcs.vpcs_ds.vpcs.0.id}"
}

» Argument Reference

The following arguments are supported:

  • cidr_block - (Optional) Filter results by a specific CIDR block. For example: "172.16.0.0/12".
  • status - (Optional) Filter results by a specific status. Valid value are Pending and Available.
  • name_regex - (Optional) A regex string to filter VPCs by name.
  • is_default - (Optional, type: bool) Indicate whether the VPC is the default one in the specified region.
  • vswitch_id - (Optional) Filter results by the specified VSwitch.
  • output_file - (Optional) File name where to save data source results (after running terraform plan).

» Attributes Reference

The following attributes are exported in addition to the arguments listed above: