mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-06 14:13:16 -06:00
Add docs for AWS IG tags
This commit is contained in:
parent
9d53689f11
commit
3366f1924f
@ -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
Block a user