Created
February 26, 2019 19:24
-
-
Save 100daysofdevops/9987c137a0d1c44e77eb065e03084352 to your computer and use it in GitHub Desktop.
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
| # Creating Internet Gateway | |
| resource "aws_internet_gateway" "gw" { | |
| vpc_id = "${aws_vpc.main.id}" | |
| tags { | |
| Name = "my-test-igw" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment