Skip to content

Instantly share code, notes, and snippets.

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

  • Save 100daysofdevops/6cf9b4ec38f37f8ef4e30fdbbf5277e0 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/6cf9b4ec38f37f8ef4e30fdbbf5277e0 to your computer and use it in GitHub Desktop.
# Public Route Table
resource "aws_route_table" "public_route" {
vpc_id = "${aws_vpc.main.id}"
route {
cidr_block = "0.0.0.0/0"
gateway_id = "${aws_internet_gateway.gw.id}"
}
tags {
Name = "my-test-public-route"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment