Merge pull request #966 from TimeInc/ig-tags-docs
Add docs for AWS IG tags
This commit is contained in:
commit
edaed1fa77
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue