From 77b866f3bd617e3ccf17e5fc3ea6b2c16fab7264 Mon Sep 17 00:00:00 2001 From: Mariano Fuentes Date: Mon, 5 Jan 2026 10:31:32 -0500 Subject: [PATCH] chore(aws): update region labels to include region codes (#1971) --- .../src/manifests/aws/credentials.ts | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/packages/integration-platform/src/manifests/aws/credentials.ts b/packages/integration-platform/src/manifests/aws/credentials.ts index 852bf9c01..911547212 100644 --- a/packages/integration-platform/src/manifests/aws/credentials.ts +++ b/packages/integration-platform/src/manifests/aws/credentials.ts @@ -30,43 +30,43 @@ export const awsCredentialFields = [ helpText: 'Select a common region or type your own (e.g., us-east-1, eu-west-1)', options: [ // US Regions - { value: 'us-east-1', label: 'US East (N. Virginia)' }, - { value: 'us-east-2', label: 'US East (Ohio)' }, - { value: 'us-west-1', label: 'US West (N. California)' }, - { value: 'us-west-2', label: 'US West (Oregon)' }, + { value: 'us-east-1', label: 'us-east-1 (N. Virginia)' }, + { value: 'us-east-2', label: 'us-east-2 (Ohio)' }, + { value: 'us-west-1', label: 'us-west-1 (N. California)' }, + { value: 'us-west-2', label: 'us-west-2 (Oregon)' }, // Europe Regions - { value: 'eu-west-1', label: 'Europe (Ireland)' }, - { value: 'eu-west-2', label: 'Europe (London)' }, - { value: 'eu-west-3', label: 'Europe (Paris)' }, - { value: 'eu-central-1', label: 'Europe (Frankfurt)' }, - { value: 'eu-central-2', label: 'Europe (Zurich)' }, - { value: 'eu-north-1', label: 'Europe (Stockholm)' }, - { value: 'eu-south-1', label: 'Europe (Milan)' }, - { value: 'eu-south-2', label: 'Europe (Spain)' }, + { value: 'eu-west-1', label: 'eu-west-1 (Ireland)' }, + { value: 'eu-west-2', label: 'eu-west-2 (London)' }, + { value: 'eu-west-3', label: 'eu-west-3 (Paris)' }, + { value: 'eu-central-1', label: 'eu-central-1 (Frankfurt)' }, + { value: 'eu-central-2', label: 'eu-central-2 (Zurich)' }, + { value: 'eu-north-1', label: 'eu-north-1 (Stockholm)' }, + { value: 'eu-south-1', label: 'eu-south-1 (Milan)' }, + { value: 'eu-south-2', label: 'eu-south-2 (Spain)' }, // Asia Pacific Regions - { value: 'ap-east-1', label: 'Asia Pacific (Hong Kong)' }, - { value: 'ap-south-1', label: 'Asia Pacific (Mumbai)' }, - { value: 'ap-south-2', label: 'Asia Pacific (Hyderabad)' }, - { value: 'ap-northeast-1', label: 'Asia Pacific (Tokyo)' }, - { value: 'ap-northeast-2', label: 'Asia Pacific (Seoul)' }, - { value: 'ap-northeast-3', label: 'Asia Pacific (Osaka)' }, - { value: 'ap-southeast-1', label: 'Asia Pacific (Singapore)' }, - { value: 'ap-southeast-2', label: 'Asia Pacific (Sydney)' }, - { value: 'ap-southeast-3', label: 'Asia Pacific (Jakarta)' }, - { value: 'ap-southeast-4', label: 'Asia Pacific (Melbourne)' }, - { value: 'ap-southeast-5', label: 'Asia Pacific (Malaysia)' }, + { value: 'ap-east-1', label: 'ap-east-1 (Hong Kong)' }, + { value: 'ap-south-1', label: 'ap-south-1 (Mumbai)' }, + { value: 'ap-south-2', label: 'ap-south-2 (Hyderabad)' }, + { value: 'ap-northeast-1', label: 'ap-northeast-1 (Tokyo)' }, + { value: 'ap-northeast-2', label: 'ap-northeast-2 (Seoul)' }, + { value: 'ap-northeast-3', label: 'ap-northeast-3 (Osaka)' }, + { value: 'ap-southeast-1', label: 'ap-southeast-1 (Singapore)' }, + { value: 'ap-southeast-2', label: 'ap-southeast-2 (Sydney)' }, + { value: 'ap-southeast-3', label: 'ap-southeast-3 (Jakarta)' }, + { value: 'ap-southeast-4', label: 'ap-southeast-4 (Melbourne)' }, + { value: 'ap-southeast-5', label: 'ap-southeast-5 (Malaysia)' }, // Canada - { value: 'ca-central-1', label: 'Canada (Central)' }, - { value: 'ca-west-1', label: 'Canada (Calgary)' }, + { value: 'ca-central-1', label: 'ca-central-1 (Central)' }, + { value: 'ca-west-1', label: 'ca-west-1 (Calgary)' }, // South America - { value: 'sa-east-1', label: 'South America (São Paulo)' }, + { value: 'sa-east-1', label: 'sa-east-1 (São Paulo)' }, // Middle East - { value: 'me-south-1', label: 'Middle East (Bahrain)' }, - { value: 'me-central-1', label: 'Middle East (UAE)' }, + { value: 'me-south-1', label: 'me-south-1 (Bahrain)' }, + { value: 'me-central-1', label: 'me-central-1 (UAE)' }, // Africa - { value: 'af-south-1', label: 'Africa (Cape Town)' }, + { value: 'af-south-1', label: 'af-south-1 (Cape Town)' }, // Israel - { value: 'il-central-1', label: 'Israel (Tel Aviv)' }, + { value: 'il-central-1', label: 'il-central-1 (Tel Aviv)' }, ], }, ];