mirror of https://github.com/rancher/ui.git
40 lines
900 B
JavaScript
40 lines
900 B
JavaScript
// Copyright 2020 Oracle and/or its affiliates.
|
|
|
|
// See:
|
|
// https://docs.cloud.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm
|
|
// https://docs.cloud.oracle.com/en-us/iaas/Content/General/Concepts/govfeddod.htm
|
|
// https://docs.cloud.oracle.com/en-us/iaas/Content/General/Concepts/govuksouth.htm
|
|
export const OCI_REGIONS = [
|
|
'ap-chuncheon-1',
|
|
'ap-hyderabad-1',
|
|
'ap-mumbai-1',
|
|
'ap-melbourne-1',
|
|
'ap-osaka-1',
|
|
'ap-seoul-1',
|
|
'ap-sydney-1',
|
|
'ap-tokyo-1',
|
|
'ca-montreal-1',
|
|
'ca-toronto-1',
|
|
'eu-amsterdam-1',
|
|
'eu-frankfurt-1',
|
|
'eu-zurich-1',
|
|
'me-dubai-1',
|
|
'me-jeddah-1',
|
|
'sa-santiago-1',
|
|
'sa-saopaulo-1',
|
|
'sa-vinhedo-1',
|
|
'uk-cardiff-1',
|
|
'uk-london-1',
|
|
'us-phoenix-1',
|
|
'us-ashburn-1',
|
|
'us-sanjose-1',
|
|
'us-langley-1',
|
|
'us-luke-1',
|
|
'us-gov-ashburn-1',
|
|
'us-gov-phoenix-1',
|
|
'us-gov-chicago-1',
|
|
'uk-gov-london-1',
|
|
'uk-gov-cardiff-1',
|
|
];
|
|
|