From 5e4e7f36f0f420f4a1452f92404c5f032b96f529 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Mon, 7 Oct 2024 12:58:50 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(regions):=20match=20east=20t?= =?UTF-8?q?o=20east=20and=20west=20to=20rest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 2bbcd83..247359c 100644 --- a/main.tf +++ b/main.tf @@ -58,7 +58,7 @@ resource "aws_route53_vpc_association_authorization" "self_zone_east" { resource "aws_route53_zone_association" "self_zone_east" { provider = aws.route53_main_east - count = local.region == "us-gov-west-1" && local.is_shared_vpc ? 1 : 0 + count = local.region == "us-gov-east-1" && local.is_shared_vpc ? 1 : 0 zone_id = aws_route53_zone.cluster_domain.zone_id vpc_id = data.aws_vpc.eks_vpc.id