From 7a52ef6eea2335420fe1646cfafd31831761d1c3 Mon Sep 17 00:00:00 2001 From: Kyle <1kylecameron@gmail.com> Date: Sat, 2 Mar 2019 07:39:03 -0500 Subject: [PATCH] docs: Update comment in docs (#226) --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index be59a2788..a84b737e1 100644 --- a/main.tf +++ b/main.tf @@ -94,7 +94,7 @@ resource "aws_route" "public_internet_gateway" { ################# # Private routes -# There are so many routing tables as the largest amount of subnets of each type (really?) +# There are as many routing tables as the number of NAT gateways ################# resource "aws_route_table" "private" { count = "${var.create_vpc && local.max_subnet_length > 0 ? local.nat_gateway_count : 0}"