From d775c500095dfeb8522922df8a91ff07e8bdb91d Mon Sep 17 00:00:00 2001 From: badra001 Date: Tue, 28 Mar 2023 20:11:06 -0400 Subject: [PATCH] fix --- route53-zone-association/vpc/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/route53-zone-association/vpc/main.tf b/route53-zone-association/vpc/main.tf index 1643f48..e9049a6 100644 --- a/route53-zone-association/vpc/main.tf +++ b/route53-zone-association/vpc/main.tf @@ -62,7 +62,7 @@ resource "aws_route53_vpc_association_authorization" "peer_zones" { resource "aws_route53_zone_association" "peer_zones" { provider = aws.self - for_each = toset(var.zones_ids) + for_each = toset(local.zones_ids) zone_id = each.key vpc_id = var.vpc_id