Skip to content

Commit

Permalink
change conditional private routes (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-joshua authored and antonbabenko committed Dec 6, 2017
1 parent 8fc476b commit 3ddef14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ resource "aws_route" "public_internet_gateway" {
# Private routes
#################
resource "aws_route_table" "private" {
count = "${length(var.azs)}"
count = "${length(var.private_subnets)}"

vpc_id = "${aws_vpc.this.id}"
propagating_vgws = ["${var.private_propagating_vgws}"]
Expand Down

0 comments on commit 3ddef14

Please sign in to comment.