Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions wherobots/db/region.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down