config new IGW resource

This commit is contained in:
UdhavPawar 2021-09-15 16:04:43 -07:00
parent bc2b890a4e
commit f3d07dd170

View file

@ -0,0 +1,7 @@
resource "aws_internet_gateway" "gw" {
vpc_id = aws_vpc.main.id
tags = {
Name = "main"
}
}