Skip to content

Commit 258cdcd

Browse files
authored
Update supported region for 2nd Gen functions. (#1402)
Now matches support regions listed on the Firebase CLI. Fixes #1397
1 parent 47cfc61 commit 258cdcd

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Update list of supported regions for 2nd Gen Functions. (#1402)

src/v2/options.ts

+19-1
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,31 @@ export { RESET_VALUE } from "../common/options";
4545
* List of all regions supported by Cloud Functions v2
4646
*/
4747
export type SupportedRegion =
48+
| "asia-east1"
4849
| "asia-northeast1"
50+
| "asia-northeast2"
4951
| "europe-north1"
5052
| "europe-west1"
5153
| "europe-west4"
5254
| "us-central1"
5355
| "us-east1"
54-
| "us-west1";
56+
| "us-east4"
57+
| "us-west1"
58+
| "asia-east2"
59+
| "asia-northeast3"
60+
| "asia-southeast1"
61+
| "asia-southeast2"
62+
| "asia-south1"
63+
| "australia-southeast1"
64+
| "europe-central2"
65+
| "europe-west2"
66+
| "europe-west3"
67+
| "europe-west6"
68+
| "northamerica-northeast1"
69+
| "southamerica-east1"
70+
| "us-west2"
71+
| "us-west3"
72+
| "us-west4";
5573

5674
/**
5775
* List of available memory options supported by Cloud Functions.

0 commit comments

Comments
 (0)