mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
feat: Update AWS credential to support more regions (#13524)
This commit is contained in:
parent
c021a7e4b2
commit
b50658cbc6
|
@ -27,6 +27,11 @@ export const regions = [
|
|||
displayName: 'Asia Pacific',
|
||||
location: 'Mumbai',
|
||||
},
|
||||
{
|
||||
name: 'ap-south-2',
|
||||
displayName: 'Asia Pacific',
|
||||
location: 'Hyderabad',
|
||||
},
|
||||
{
|
||||
name: 'ap-southeast-1',
|
||||
displayName: 'Asia Pacific',
|
||||
|
@ -42,6 +47,21 @@ export const regions = [
|
|||
displayName: 'Asia Pacific',
|
||||
location: 'Jakarta',
|
||||
},
|
||||
{
|
||||
name: 'ap-southeast-4',
|
||||
displayName: 'Asia Pacific',
|
||||
location: 'Melbourne',
|
||||
},
|
||||
{
|
||||
name: 'ap-southeast-5',
|
||||
displayName: 'Asia Pacific',
|
||||
location: 'Malaysia',
|
||||
},
|
||||
{
|
||||
name: 'ap-southeast-7',
|
||||
displayName: 'Asia Pacific',
|
||||
location: 'Thailand',
|
||||
},
|
||||
{
|
||||
name: 'ap-northeast-1',
|
||||
displayName: 'Asia Pacific',
|
||||
|
@ -62,11 +82,31 @@ export const regions = [
|
|||
displayName: 'Canada',
|
||||
location: 'Central',
|
||||
},
|
||||
{
|
||||
name: 'ca-west-1',
|
||||
displayName: 'Canada West',
|
||||
location: 'Calgary',
|
||||
},
|
||||
{
|
||||
name: 'cn-north-1',
|
||||
displayName: 'China',
|
||||
location: 'Beijing',
|
||||
},
|
||||
{
|
||||
name: 'cn-northwest-1',
|
||||
displayName: 'China',
|
||||
location: 'Ningxia',
|
||||
},
|
||||
{
|
||||
name: 'eu-central-1',
|
||||
displayName: 'Europe',
|
||||
location: 'Frankfurt',
|
||||
},
|
||||
{
|
||||
name: 'eu-central-2',
|
||||
displayName: 'Europe',
|
||||
location: 'Zurich',
|
||||
},
|
||||
{
|
||||
name: 'eu-north-1',
|
||||
displayName: 'Europe',
|
||||
|
@ -77,6 +117,11 @@ export const regions = [
|
|||
displayName: 'Europe',
|
||||
location: 'Milan',
|
||||
},
|
||||
{
|
||||
name: 'eu-south-2',
|
||||
displayName: 'Europe',
|
||||
location: 'Spain',
|
||||
},
|
||||
{
|
||||
name: 'eu-west-1',
|
||||
displayName: 'Europe',
|
||||
|
@ -92,11 +137,26 @@ export const regions = [
|
|||
displayName: 'Europe',
|
||||
location: 'Paris',
|
||||
},
|
||||
{
|
||||
name: 'il-central-1',
|
||||
displayName: 'Israel',
|
||||
location: 'Tel Aviv',
|
||||
},
|
||||
{
|
||||
name: 'me-central-1',
|
||||
displayName: 'Middle East',
|
||||
location: 'UAE',
|
||||
},
|
||||
{
|
||||
name: 'me-south-1',
|
||||
displayName: 'Middle East',
|
||||
location: 'Bahrain',
|
||||
},
|
||||
{
|
||||
name: 'mx-central-1',
|
||||
displayName: 'Mexico',
|
||||
location: 'Central',
|
||||
},
|
||||
{
|
||||
name: 'sa-east-1',
|
||||
displayName: 'South America',
|
||||
|
@ -112,6 +172,11 @@ export const regions = [
|
|||
displayName: 'US East',
|
||||
location: 'Ohio',
|
||||
},
|
||||
{
|
||||
name: 'us-gov-east-1',
|
||||
displayName: 'US East',
|
||||
location: 'GovCloud',
|
||||
},
|
||||
{
|
||||
name: 'us-west-1',
|
||||
displayName: 'US West',
|
||||
|
@ -122,6 +187,11 @@ export const regions = [
|
|||
displayName: 'US West',
|
||||
location: 'Oregon',
|
||||
},
|
||||
{
|
||||
name: 'us-gov-west-1',
|
||||
displayName: 'US West',
|
||||
location: 'GovCloud',
|
||||
},
|
||||
] as const;
|
||||
|
||||
export type AWSRegion = (typeof regions)[number]['name'];
|
||||
|
|
Loading…
Reference in a new issue