Add docs for AWS IG tags

This commit is contained in:
Radek Simko 2015-02-11 13:33:59 +00:00
parent 9d53689f11
commit 3366f1924f
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,10 @@ Provides a resource to create a VPC Internet Gateway.
```
resource "aws_internet_gateway" "gw" {
vpc_id = "${aws_vpc.main.id}"
tags {
Name = "main"
}
}
```
@ -23,6 +27,7 @@ resource "aws_internet_gateway" "gw" {
The following arguments are supported:
* `vpc_id` - (Required) The VPC ID to create in.
* `tags` - (Optional) A mapping of tags to assign to the resource.
## Attributes Reference