From 8bed95899cc598c09b0a9eab0fc53c0d0243f9ce Mon Sep 17 00:00:00 2001 From: Nick Aiello Date: Tue, 19 Mar 2024 00:37:15 -0500 Subject: [PATCH] chore(route53): support new partitions in route53 cross-account delegator --- .../cross-account-zone-delegation-handler/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/@aws-cdk/custom-resource-handlers/lib/aws-route53/cross-account-zone-delegation-handler/index.ts b/packages/@aws-cdk/custom-resource-handlers/lib/aws-route53/cross-account-zone-delegation-handler/index.ts index c39fd03b0926f..7ffacb38db4b6 100644 --- a/packages/@aws-cdk/custom-resource-handlers/lib/aws-route53/cross-account-zone-delegation-handler/index.ts +++ b/packages/@aws-cdk/custom-resource-handlers/lib/aws-route53/cross-account-zone-delegation-handler/index.ts @@ -111,6 +111,8 @@ function route53Region(region: string) { 'us-gov': 'us-gov-west-1', 'us-iso': 'us-iso-east-1', 'us-isob': 'us-isob-east-1', + 'eu-isoe': 'eu-isoe-west-1', + 'us-isof': 'us-isof-south-1', }; for (const [prefix, mainRegion] of Object.entries(partitions)) { @@ -121,4 +123,4 @@ function route53Region(region: string) { // Default for commercial partition return 'us-east-1'; -} \ No newline at end of file +}