Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created February 26, 2019 19:24
Show Gist options
  • Select an option

  • Save 100daysofdevops/9987c137a0d1c44e77eb065e03084352 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/9987c137a0d1c44e77eb065e03084352 to your computer and use it in GitHub Desktop.
# 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