Skip to content

Commit 0ca340f

Browse files
authoredFeb 10, 2025··
fix: add missing eu-central-1, ap-southeast-1 and ap-southeast-2 regions (#214)
1 parent 9bae940 commit 0ca340f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/region.ts

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ export const REGION_AUTO = 'auto'
33
const regions = {
44
'us-east-1': true,
55
'us-east-2': true,
6+
'eu-central-1': true,
7+
'ap-southeast-1': true,
8+
'ap-southeast-2': true,
69
}
710

811
export type Region = keyof typeof regions

0 commit comments

Comments
 (0)
Please sign in to comment.