Deploy Cloud Run instance connected to Cloud SQL
Basic example of a Google Cloud Run and Google Cloud SQL deployment
This example lives in the pulumi/examples repository. Check out just this directory to use it:
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examplesgit -C pulumi-examples sparse-checkout set gcp-py-cloudrun-cloudsqlcd pulumi-examples/gcp-py-cloudrun-cloudsqlExample of starting a Cloud Run deployment with Cloud SQL instance
Running the App#
-
Create a new stack:
$ pulumi stack init dev -
Configure the project:
$ pulumi config set gcp:project YOURGOOGLECLOUDPROJECT$ pulumi config set gcp:region europe-west1$ pulumi config set db-name project-db$ pulumi config set --secret db-password SuuperSecret12345! -
Preview and deploy changes:
$ pulumi up -
Curl the Cloud Run:
$ curl -H "Authorization: Bearer $(gcloud auth print-identity-token)" $(pulumi stack output cloud_run_url) -
Access the database:
$ gcloud sql connect $(pulumi stack output cloud_sql_instance_name) -u $(pulumi config get db-name) --project $(pulumi config get gcp:project) -
Cleanup
$ pulumi destroy$ pulumi stack rm