mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
config new IGW resource
This commit is contained in:
parent
bc2b890a4e
commit
f3d07dd170
1 changed files with 7 additions and 0 deletions
7
terraform/aws/new-igw/main.tf
Normal file
7
terraform/aws/new-igw/main.tf
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
resource "aws_internet_gateway" "gw" {
|
||||
vpc_id = aws_vpc.main.id
|
||||
|
||||
tags = {
|
||||
Name = "main"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue