From 1623146a86adae2bdc22fbe0b9ef2a4377a475a9 Mon Sep 17 00:00:00 2001 From: marco Date: Wed, 22 Apr 2026 14:05:37 +0200 Subject: [PATCH 1/3] add support for AWS region eu-central-2 --- console/src/components/file_manager/s3Providers.ts | 1 + console/src/components/settings/Integrations.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/console/src/components/file_manager/s3Providers.ts b/console/src/components/file_manager/s3Providers.ts index 73092eef..aa367448 100644 --- a/console/src/components/file_manager/s3Providers.ts +++ b/console/src/components/file_manager/s3Providers.ts @@ -43,6 +43,7 @@ export const S3_PROVIDERS: S3Provider[] = [ 'eu-west-2', 'eu-west-3', 'eu-central-1', + 'eu-central-2', 'eu-north-1', 'ap-northeast-1', 'ap-northeast-2', diff --git a/console/src/components/settings/Integrations.tsx b/console/src/components/settings/Integrations.tsx index 2d82587f..94430514 100644 --- a/console/src/components/settings/Integrations.tsx +++ b/console/src/components/settings/Integrations.tsx @@ -1498,6 +1498,7 @@ export function Integrations({ workspace, onSave, loading, isOwner }: Integratio Europe (Frankfurt) - eu-central-1 + Europe (Zurich) - eu-central-2 Europe (Ireland) - eu-west-1 Europe (London) - eu-west-2 Europe (Milan) - eu-south-1 From 2baa88a305773b4348a2af3beab0498eb2e436ba Mon Sep 17 00:00:00 2001 From: marco Date: Thu, 23 Apr 2026 11:26:29 +0200 Subject: [PATCH 2/3] All missing S3 endpoints listed at https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_region have been added (except for us-gov-). They have also been sorted alphabetically. --- .../components/file_manager/s3Providers.ts | 40 +++++++++++++------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/console/src/components/file_manager/s3Providers.ts b/console/src/components/file_manager/s3Providers.ts index aa367448..63f6ea8f 100644 --- a/console/src/components/file_manager/s3Providers.ts +++ b/console/src/components/file_manager/s3Providers.ts @@ -35,24 +35,40 @@ export const S3_PROVIDERS: S3Provider[] = [ regionRequired: true, regionPlaceholder: 'us-east-1', regionOptions: [ - 'us-east-1', - 'us-east-2', - 'us-west-1', - 'us-west-2', - 'eu-west-1', - 'eu-west-2', - 'eu-west-3', - 'eu-central-1', - 'eu-central-2', - 'eu-north-1', + 'af-south-1', + 'ap-east-1', + 'ap-east-2', 'ap-northeast-1', 'ap-northeast-2', 'ap-northeast-3', + 'ap-south-1', + 'ap-south-2', 'ap-southeast-1', 'ap-southeast-2', - 'ap-south-1', + 'ap-southeast-3', + 'ap-southeast-4', + 'ap-southeast-5', + 'ap-southeast-6', + 'ap-southeast-7', + 'ca-central-1', + 'ca-west-1', + 'eu-central-1', + 'eu-central-2', + 'eu-north-1', + 'eu-south-1', + 'eu-south-2', + 'eu-west-1', + 'eu-west-2', + 'eu-west-3', + 'il-central-1', + 'me-central-1', + 'me-south-1', + 'mx-central-1', 'sa-east-1', - 'ca-central-1' + 'us-east-1', + 'us-east-2', + 'us-west-1', + 'us-west-2' ], forcePathStyle: false, showForcePathStyle: false From 6f8ecaa383d16c0dbfa178be61441516d7ec2471 Mon Sep 17 00:00:00 2001 From: marco Date: Thu, 23 Apr 2026 11:35:56 +0200 Subject: [PATCH 3/3] All missing SES endpoints have been added according to https://docs.aws.amazon.com/general/latest/gr/ses.html#ses_region. --- console/src/components/settings/Integrations.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/console/src/components/settings/Integrations.tsx b/console/src/components/settings/Integrations.tsx index 94430514..abd1dfa6 100644 --- a/console/src/components/settings/Integrations.tsx +++ b/console/src/components/settings/Integrations.tsx @@ -1475,9 +1475,15 @@ export function Integrations({ workspace, onSave, loading, isOwner }: Integratio US West (N. California) - us-west-1 US West (Oregon) - us-west-2 Africa (Cape Town) - af-south-1 + + Asia Pacific (Hyderabad) - ap-south-2 + Asia Pacific (Jakarta) - ap-southeast-3 + + Asia Pacific (Malaysia) - ap-southeast-5 + Asia Pacific (Mumbai) - ap-south-1 Asia Pacific (Osaka) - ap-northeast-3 @@ -1495,6 +1501,7 @@ export function Integrations({ workspace, onSave, loading, isOwner }: Integratio Asia Pacific (Tokyo) - ap-northeast-1 Canada (Central) - ca-central-1 + Canada West (Calgary) - ca-west-1 Europe (Frankfurt) - eu-central-1 @@ -1506,6 +1513,7 @@ export function Integrations({ workspace, onSave, loading, isOwner }: Integratio Europe (Stockholm) - eu-north-1 Israel (Tel Aviv) - il-central-1 Middle East (Bahrain) - me-south-1 + Middle East (UAE) - me-central-1 South America (São Paulo) - sa-east-1