Add documentation about aws_subnet_ids

This commit is contained in:
Colin Wood 2017-03-31 11:21:44 -07:00
parent d7a319f239
commit 1ce0776c51
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,40 @@
---
layout: "aws"
page_title: "AWS: aws_subnet_ids"
sidebar_current: "docs-aws-datasource-subnet-ids"
description: |-
Provides a list of subnet Ids for a VPC
---
# aws\_subnet\_ids
`aws_subnet_ids` provides a list of 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 shows outputing all cidr blocks for every subnet id in a vpc.
```
data "aws_subnet_ids" "example" {
vpc_id = "${var.vpc_id}"
}
data "aws_subnet" "example" {
count = "${length(data.aws_subnet_ids.example.ids)}"
id = "${aws_subnet_ids.example.ids[count.index]}"
}
output "subnet_cidr_blocks" {
value = ["${data.aws_subnet.example.*.cidr_block}"]
}
```
## Argument Reference
* `vpc_id` - (Required) The VPC ID that you want to filter from.
## Attributes Reference
* `ids` - Is a list of all the subnet ids found. If none found. This data source will fail out.

View File

@ -119,6 +119,9 @@
<li<%= sidebar_current("docs-aws-datasource-subnet") %>>
<a href="/docs/providers/aws/d/subnet.html">aws_subnet</a>
</li>
<li<%= sidebar_current("docs-aws-datasource-subnet-ids") %>>
<a href="/docs/providers/aws/d/subnet_ids.html">aws_subnet_ids</a>
</li>
<li<%= sidebar_current("docs-aws-datasource-vpc") %>>
<a href="/docs/providers/aws/d/vpc.html">aws_vpc</a>
</li>