» Data Source: huaweicloud_vpc_subnet_ids_v1

huaweicloud_vpc_subnet_ids_v1 provides a list of subnet ids for a vpc_id

This resource can be useful for getting back a list of subnet ids for a vpc.

» Example Usage

The following example shows outputing all cidr blocks for every subnet id in a vpc.

data "huaweicloud_vpc_subnet_ids_v1" "subnet_ids" {
  vpc_id = "${var.vpc_id}" 
}

data "huaweicloud_vpc_subnet_v1" "subnet" {
  count = "${length(data.huaweicloud_vpc_subnet_ids_v1.subnet_ids.ids)}"
  id    = "${data.huaweicloud_vpc_subnet_ids_v1.subnet_ids.ids[count.index]}"
 }

output "subnet_cidr_blocks" {
  value = "${data.huaweicloud_vpc_subnet_v1.subnet.*.cidr}"
}

» Argument Reference

The following arguments are supported:

  • vpc_id (Required) - Specifies the VPC ID used as the query filter.

» Attributes Reference

The following attributes are exported:

  • ids - A list of all the subnet ids found. This data source will fail if none are found.