From 4b0011c48f048d96312b791ab1fbc50e85b94145 Mon Sep 17 00:00:00 2001 From: Mark Beacom <7315957+mbeacom@users.noreply.github.com> Date: Mon, 20 Jun 2022 09:51:41 -0400 Subject: [PATCH] Fix #63 - Adjust enable_nat_gateway to true for complete example --- examples/complete/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/complete/main.tf b/examples/complete/main.tf index d589b07..22e7adc 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -175,7 +175,7 @@ module "vpc" { public_subnets = ["10.99.0.0/24", "10.99.1.0/24", "10.99.2.0/24"] private_subnets = ["10.99.3.0/24", "10.99.4.0/24", "10.99.5.0/24"] - enable_nat_gateway = false + enable_nat_gateway = true single_nat_gateway = true enable_dns_hostnames = true map_public_ip_on_launch = false