Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 28 additions & 11 deletions console/src/components/file_manager/s3Providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +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-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
Expand Down
9 changes: 9 additions & 0 deletions console/src/components/settings/Integrations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1475,9 +1475,15 @@ export function Integrations({ workspace, onSave, loading, isOwner }: Integratio
<Select.Option value="us-west-1">US West (N. California) - us-west-1</Select.Option>
<Select.Option value="us-west-2">US West (Oregon) - us-west-2</Select.Option>
<Select.Option value="af-south-1">Africa (Cape Town) - af-south-1</Select.Option>
<Select.Option value="ap-south-2">
Asia Pacific (Hyderabad) - ap-south-2
</Select.Option>
<Select.Option value="ap-southeast-3">
Asia Pacific (Jakarta) - ap-southeast-3
</Select.Option>
<Select.Option value="ap-southeast-5">
Asia Pacific (Malaysia) - ap-southeast-5
</Select.Option>
<Select.Option value="ap-south-1">Asia Pacific (Mumbai) - ap-south-1</Select.Option>
<Select.Option value="ap-northeast-3">
Asia Pacific (Osaka) - ap-northeast-3
Expand All @@ -1495,16 +1501,19 @@ export function Integrations({ workspace, onSave, loading, isOwner }: Integratio
Asia Pacific (Tokyo) - ap-northeast-1
</Select.Option>
<Select.Option value="ca-central-1">Canada (Central) - ca-central-1</Select.Option>
<Select.Option value="ca-west-1">Canada West (Calgary) - ca-west-1</Select.Option>
<Select.Option value="eu-central-1">
Europe (Frankfurt) - eu-central-1
</Select.Option>
<Select.Option value="eu-central-2">Europe (Zurich) - eu-central-2</Select.Option>
<Select.Option value="eu-west-1">Europe (Ireland) - eu-west-1</Select.Option>
<Select.Option value="eu-west-2">Europe (London) - eu-west-2</Select.Option>
<Select.Option value="eu-south-1">Europe (Milan) - eu-south-1</Select.Option>
<Select.Option value="eu-west-3">Europe (Paris) - eu-west-3</Select.Option>
<Select.Option value="eu-north-1">Europe (Stockholm) - eu-north-1</Select.Option>
<Select.Option value="il-central-1">Israel (Tel Aviv) - il-central-1</Select.Option>
<Select.Option value="me-south-1">Middle East (Bahrain) - me-south-1</Select.Option>
<Select.Option value="me-central-1">Middle East (UAE) - me-central-1</Select.Option>
<Select.Option value="sa-east-1">
South America (São Paulo) - sa-east-1
</Select.Option>
Expand Down