From ea559c54dd100df38977e6206e11f2dd73594863 Mon Sep 17 00:00:00 2001 From: guyzsarun Date: Sun, 17 Dec 2023 21:30:59 +0100 Subject: [PATCH] fmt --- vpc.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vpc.tf b/vpc.tf index 16781ad..c54208b 100644 --- a/vpc.tf +++ b/vpc.tf @@ -67,13 +67,13 @@ resource "aws_route_table" "main-vpc-private-routetable" { resource "aws_route_table_association" "route-assoc-private" { subnet_id = each.value.id route_table_id = aws_route_table.main-vpc-private-routetable.id - for_each = { for i, subnet in aws_subnet.main-vpc-subnet-private : subnet.id => subnet } + for_each = { for i, subnet in aws_subnet.main-vpc-subnet-private : subnet.id => subnet } } resource "aws_route_table_association" "route-assoc-public" { subnet_id = each.value.id route_table_id = aws_route_table.main-vpc-public-routetable.id - for_each = { for i, subnet in aws_subnet.main-vpc-subnet-public : subnet.id => subnet } + for_each = { for i, subnet in aws_subnet.main-vpc-subnet-public : subnet.id => subnet } } resource "aws_internet_gateway" "gw" {