github.com/minio/console@v1.4.1/web-app/src/screens/Console/Configurations/TiersConfiguration/s3-regions.tsx (about) 1 // This file is part of MinIO Console Server 2 // Copyright (c) 2022 MinIO, Inc. 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Affero General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Affero General Public License for more details. 13 // 14 // You should have received a copy of the GNU Affero General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 16 17 import { SelectorType } from "mds"; 18 19 const s3Regions: SelectorType[] = [ 20 { label: "US East (Ohio)", value: "us-east-2" }, 21 { label: "US East (N. Virginia)", value: "us-east-1" }, 22 { label: "US West (N. California)", value: "us-west-1" }, 23 { label: "US West (Oregon)", value: "us-west-2" }, 24 { label: "Africa (Cape Town)", value: "af-south-1" }, 25 { label: "Asia Pacific (Hong Kong)***", value: "ap-east-1" }, 26 { label: "Asia Pacific (Jakarta)", value: "ap-southeast-3" }, 27 { label: "Asia Pacific (Mumbai)", value: "ap-south-1" }, 28 { label: "Asia Pacific (Osaka)", value: "ap-northeast-3" }, 29 { label: "Asia Pacific (Seoul)", value: "ap-northeast-2" }, 30 { label: "Asia Pacific (Singapore)", value: "ap-southeast-1" }, 31 { label: "Asia Pacific (Sydney)", value: "ap-southeast-2" }, 32 { label: "Asia Pacific (Tokyo)", value: "ap-northeast-1" }, 33 { label: "Canada (Central)", value: "ca-central-1" }, 34 { label: "China (Beijing)", value: "cn-north-1" }, 35 { label: "China (Ningxia)", value: "cn-northwest-1" }, 36 { label: "Europe (Frankfurt)", value: "eu-central-1" }, 37 { label: "Europe (Ireland)", value: "eu-west-1" }, 38 { label: "Europe (London)", value: "eu-west-2" }, 39 { label: "Europe (Milan)", value: "eu-south-1" }, 40 { label: "Europe (Paris)", value: "eu-west-3" }, 41 { label: "Europe (Stockholm)", value: "eu-north-1" }, 42 { label: "South America (São Paulo)", value: "sa-east-1" }, 43 { label: "Middle East (Bahrain)", value: "me-south-1" }, 44 { label: "AWS GovCloud (US-East)", value: "us-gov-east-1" }, 45 { label: "AWS GovCloud (US-West)", value: "us-gov-west-1" }, 46 ]; 47 48 export default s3Regions;