Skip to content

Commit e5bc70e

Browse files
committed
Renamed aws_route.public_internet_gateway to aws_route.public to correspond with AWS naming
1 parent 7ce08fa commit e5bc70e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "aws_route_table" "public" {
3333
tags = "${merge(var.tags, var.public_route_table_tags, map("Name", format("%s-public", var.name)))}"
3434
}
3535

36-
resource "aws_route" "public_internet_gateway" {
36+
resource "aws_route" "public" {
3737
count = "${length(var.public_subnets) > 0 ? 1 : 0}"
3838

3939
route_table_id = "${aws_route_table.public.id}"

0 commit comments

Comments
 (0)