diff --git a/README.md b/README.md index 6208d19..18ae569 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,7 @@ into. Wherobots Cloud supports the following compute regions: * `aws-us-east-1`: AWS US East 1 (N. Virginia) * `aws-us-west-2`: AWS US West 2 (Oregon) * `aws-eu-west-1`: AWS EU West 1 (Ireland) +* `aws-ap-south-1`: AWS AP South 1 (Mumbai) > [!IMPORTANT] > The `aws-us-west-2` region is available to all Wherobots Cloud users diff --git a/wherobots/db/region.py b/wherobots/db/region.py index 4b24fa7..5c0c62a 100644 --- a/wherobots/db/region.py +++ b/wherobots/db/region.py @@ -9,6 +9,9 @@ class Region(Enum): # EMEA AWS_EU_WEST_1 = "aws-eu-west-1" + # APAC + AWS_AP_SOUTH_1 = "aws-ap-south-1" + _NAME_TO_ENUM = {region.value: region for region in Region}