Skip to content

Commit 6d23622

Browse files
committed
feat: add us-east-1 compute region
1 parent 1cb4556 commit 6d23622

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,17 @@ parameter, passing in one of the `Runtime` enum values. For more
6262
information on runtime sizing and selection, please consult the
6363
[Wherobots product documentation](https://docs.wherobots.com).
6464

65-
The only supported Wherobots compute region for now is `aws-us-west-2`,
66-
in AWS's Oregon (`us-west-2`) region.
65+
You must also specify in which region your SQL session should execute
66+
into. Wherobots Cloud supports the following compute regions:
67+
68+
* `aws-us-east-1`: AWS US East 1 (N. Virginia)
69+
* `aws-us-west-2`: AWS US West 2 (Oregon)
70+
* `aws-eu-west-1`: AWS EU West 1 (Ireland)
71+
72+
> [!IMPORTANT]
73+
> The `aws-us-west-2` region is available to all Wherobots Cloud users
74+
> and customers; other regions are currently reserved to Professional
75+
> Edition customers.
6776
6877
### Advanced parameters
6978

wherobots/db/region.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33

44
class Region(Enum):
5+
# Americas
6+
AWS_US_EAST_1 = "aws-us-east-1"
57
AWS_US_WEST_2 = "aws-us-west-2"
8+
9+
# EMEA
610
AWS_EU_WEST_1 = "aws-eu-west-1"
711

812

0 commit comments

Comments
 (0)