From 97b1d83062e86f63cf2b89b42b80ad184dd0db91 Mon Sep 17 00:00:00 2001 From: jariy17 Date: Thu, 9 Jul 2026 17:10:07 +0000 Subject: [PATCH] feat(region): add ap-southeast-5/7, eu-south-1/2 to AgentCore regions AgentCore launched in 4 new Regions: Bangkok (ap-southeast-7), Malaysia (ap-southeast-5), Milan (eu-south-1), and Spain (eu-south-2). Add them to AgentCoreRegionSchema so region detection and deployment target validation accept them. --- src/schema/schemas/__tests__/aws-targets.test.ts | 4 ++++ src/schema/schemas/aws-targets.ts | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/schema/schemas/__tests__/aws-targets.test.ts b/src/schema/schemas/__tests__/aws-targets.test.ts index 5da4df463..309839004 100644 --- a/src/schema/schemas/__tests__/aws-targets.test.ts +++ b/src/schema/schemas/__tests__/aws-targets.test.ts @@ -15,9 +15,13 @@ describe('AgentCoreRegionSchema', () => { 'ap-south-1', 'ap-southeast-1', 'ap-southeast-2', + 'ap-southeast-5', + 'ap-southeast-7', 'ca-central-1', 'eu-central-1', 'eu-north-1', + 'eu-south-1', + 'eu-south-2', 'eu-west-1', 'eu-west-2', 'eu-west-3', diff --git a/src/schema/schemas/aws-targets.ts b/src/schema/schemas/aws-targets.ts index 711e208dc..9bc7f38a1 100644 --- a/src/schema/schemas/aws-targets.ts +++ b/src/schema/schemas/aws-targets.ts @@ -12,9 +12,13 @@ export const AgentCoreRegionSchema = z.enum([ 'ap-south-1', 'ap-southeast-1', 'ap-southeast-2', + 'ap-southeast-5', + 'ap-southeast-7', 'ca-central-1', 'eu-central-1', 'eu-north-1', + 'eu-south-1', + 'eu-south-2', 'eu-west-1', 'eu-west-2', 'eu-west-3',