File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
gcp_cloud_function_sql_export Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,13 @@ cd "$srcdir"
22
22
# needed to define the $service_account further down
23
23
project=" ${CLOUDSDK_CORE_PROJECT:- $(gcloud config list --format=" value(core.project)" )} "
24
24
25
+ # Cloud Functions not available in all regions yet:
26
+ #
27
+ # https://cloud.google.com/functions/docs/locations
28
+ #
25
29
# gcloud functions deploy doesn't seem to infer CLOUDSDK_COMPUTE_REGION from environment
26
30
region=" $( gcloud config list --format=" value(compute.region)" 2>&1 || :) "
27
- region=" ${CLOUDSDK_COMPUTE_REGION:- ${region:- europe-west1} } " # not available in all regions yet
31
+ region=" ${CLOUDSDK_COMPUTE_REGION:- ${region:- europe-west1} } "
28
32
29
33
name=" cloud-sql-backups"
30
34
topic=" cloud-sql-backups"
You can’t perform that action at this time.
0 commit comments