Skip to content

Commit bf73262

Browse files
committed
updated deploy.sh
1 parent 46bd14f commit bf73262

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

gcp_cloud_function_sql_export/deploy.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,11 @@ service_account="cloud-function-sql-backup@$project.iam.gserviceaccount.com"
3030
# since we're only accessing the SQL Admin API we don't need this
3131
#vpc_connector="cloud-sql-backups"
3232

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"
33+
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

Comments
 (0)