We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46bd14f commit bf73262Copy full SHA for bf73262
gcp_cloud_function_sql_export/deploy.sh
@@ -30,4 +30,11 @@ service_account="cloud-function-sql-backup@$project.iam.gserviceaccount.com"
30
# since we're only accessing the SQL Admin API we don't need this
31
#vpc_connector="cloud-sql-backups"
32
33
-gcloud functions deploy "$name" --trigger-topic "$topic" --runtime python37 --entry-point main --service-account "$service_account" --region "$region" --timeout 60 --memory 128MB # --vpc-connector "$vpc_connector"
+gcloud functions deploy "$name" --trigger-topic "$topic" \
34
+ --runtime python37 \
35
+ --entry-point main \
36
+ --service-account "$service_account" \
37
+ --region "$region" \
38
+ --timeout 60 \
39
+ --memory 128MB
40
+ # --vpc-connector "$vpc_connector"
0 commit comments