Skip to content

Commit 670bc48

Browse files
Add all supportable aws regions to cloud shell (#523)
It looks like we were only using a subset of the usable regions, this should bring parity with the cli
1 parent c6fb210 commit 670bc48

File tree

1 file changed

+19
-1
lines changed
  • www/src/components/shell/onboarding/cloud

1 file changed

+19
-1
lines changed

www/src/components/shell/onboarding/cloud/aws.js

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,28 @@ import { FormField, Input } from 'pluralsh-design-system'
55
import { stringExists } from '../../validation'
66

77
const REGIONS = [
8+
'af-south-1',
9+
'eu-north-1',
10+
'ap-south-1',
11+
'eu-west-3',
12+
'eu-west-2',
13+
'eu-south-1',
14+
'eu-west-1',
15+
'ap-northeast-3',
16+
'ap-northeast-2',
17+
'me-south-1',
18+
'ap-northeast-1',
19+
'sa-east-1',
20+
'ca-central-1',
21+
'ap-east-1',
22+
'ap-southeast-1',
23+
'ap-southeast-2',
24+
'eu-central-1',
25+
'ap-southeast-3',
826
'us-east-1',
927
'us-east-2',
28+
'us-west-1',
1029
'us-west-2',
11-
'eu-west-1',
1230
]
1331

1432
export const AWS_VALIDATIONS = [

0 commit comments

Comments
 (0)