We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17804d0 commit f6e5882Copy full SHA for f6e5882
README.md
@@ -72,6 +72,7 @@ into. Wherobots Cloud supports the following compute regions:
72
* `aws-us-east-1`: AWS US East 1 (N. Virginia)
73
* `aws-us-west-2`: AWS US West 2 (Oregon)
74
* `aws-eu-west-1`: AWS EU West 1 (Ireland)
75
+* `aws-ap-south-1`: AWS AP South 1 (Mumbai)
76
77
> [!IMPORTANT]
78
> The `aws-us-west-2` region is available to all Wherobots Cloud users
wherobots/db/region.py
@@ -9,6 +9,9 @@ class Region(Enum):
9
# EMEA
10
AWS_EU_WEST_1 = "aws-eu-west-1"
11
12
+ # APAC
13
+ AWS_AP_SOUTH_1 = "aws-ap-south-1"
14
+
15
16
_NAME_TO_ENUM = {region.value: region for region in Region}
17
0 commit comments