Created
August 28, 2023 07:37
-
-
Save pmatsinopoulos/ee5a510fe8a0ee03a7585fc64f9dfdd7 to your computer and use it in GitHub Desktop.
AWS Private and Public Subnets - internet_gateway.tf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_internet_gateway" "private_and_public_subnets" { | |
vpc_id = aws_vpc.private_and_public_subnets.id | |
tags = { | |
"Name" = "igw" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment