From 6018993ad3b9e5fd0c1555d9a21365a59ccce3fc Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 3 May 2021 11:16:54 -0400 Subject: [PATCH] fix --- routing/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing/main.tf b/routing/main.tf index 45f266e..563d111 100644 --- a/routing/main.tf +++ b/routing/main.tf @@ -111,7 +111,7 @@ resource "aws_internet_gateway" "gateway" { # assume only 1 public subnet block (per AZ) # should figure out the first one locals { - public_subnet_ids_az = { for subnet in var.public_subnets_ids : subnet.availability_zone => subnet } + public_subnets_ids_az = { for subnet in var.public_subnets_ids : subnet.availability_zone => subnet } } resource "aws_nat_gateway" "nat" {