From 726d6182f292c0dfc0c05d0ab939896f5230af03 Mon Sep 17 00:00:00 2001 From: Maryjane Date: Fri, 5 May 2023 08:39:20 -0400 Subject: [PATCH] test1 --- vpc.tf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vpc.tf b/vpc.tf index feca728..044baf5 100644 --- a/vpc.tf +++ b/vpc.tf @@ -52,3 +52,10 @@ resource "aws_route_table_association" "demo" { subnet_id = aws_subnet.demo.*.id[count.index] route_table_id = aws_route_table.demo.id } + +resource "aws_route_table_association" "demo1" { + count = 2 + + subnet_id = aws_subnet.demo.*.id[count.index] + route_table_id = aws_route_table.demo.id +}