mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 07:16:52 -06:00
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
# ##########################################################################
|
|
# #
|
|
# # pgAdmin 4 - PostgreSQL Tools
|
|
# #
|
|
# # Copyright (C) 2013 - 2024, The pgAdmin Development Team
|
|
# # This software is released under the PostgreSQL Licence
|
|
# #
|
|
# ##########################################################################
|
|
#
|
|
# # AWS Regions
|
|
|
|
|
|
AWS_REGIONS = {
|
|
'us-gov-east-1': 'AWS GovCloud (US-East)',
|
|
'us-gov-west-1': 'AWS GovCloud (US-West)',
|
|
'af-south-1': 'Africa (Cape Town)',
|
|
'ap-east-1': 'Asia Pacific (Hong Kong)',
|
|
'ap-south-1': 'Asia Pacific (Mumbai)',
|
|
'ap-northeast-3': 'Asia Pacific (Osaka)',
|
|
'ap-northeast-2': 'Asia Pacific (Seoul)',
|
|
'ap-southeast-1': 'Asia Pacific (Singapore)',
|
|
'ap-southeast-2': 'Asia Pacific (Sydney)',
|
|
'ap-southeast-3': 'Asia Pacific (Jakarta)',
|
|
'ap-northeast-1': 'Asia Pacific (Tokyo)',
|
|
'ca-central-1': 'Canada (Central)',
|
|
'cn-north-1': 'China (Beijing)',
|
|
'cn-northwest-1': 'China (Ningxia)',
|
|
'eu-central-1': 'Europe (Frankfurt)',
|
|
'eu-west-1': 'Europe (Ireland)',
|
|
'eu-west-2': 'Europe (London)',
|
|
'eu-west-3': 'Europe (Paris)',
|
|
'eu-north-1': 'Europe (Stockholm)',
|
|
'eu-south-1': 'Europe (Milan)',
|
|
'sa-east-1': 'South America (Sao Paulo)',
|
|
'us-east-1': 'US East (N. Virginia)',
|
|
'us-east-2': 'US East (Ohio)',
|
|
'us-west-1': 'US West (N. California)',
|
|
'us-west-2': 'US West (Oregon)',
|
|
'me-south-1': 'Middle East (Bahrain)',
|
|
}
|