# Connecting to Cloud SQL - Postgres ## Before you begin 1. If you haven't already, set up a Python Development Environment by following the [python setup guide](https://cloud.google.com/python/setup) and [create a project](https://cloud.google.com/resource-manager/docs/creating-managing-projects#creating_a_project). 1. Create a 2nd Gen Cloud SQL Instance by following these [instructions](https://cloud.google.com/sql/docs/postgres/create-instance). Note the connection string, database user, and database password that you create. 1. Create a database for your application by following these [instructions](https://cloud.google.com/sql/docs/postgres/create-manage-databases). Note the database name. 1. Create a service account with the 'Cloud SQL Client' permissions by following these [instructions](https://cloud.google.com/sql/docs/postgres/connect-external-app#4_if_required_by_your_authentication_method_create_a_service_account). Download a JSON key to use to authenticate your connection. ## Running locally To run this application locally, download and install the `cloud_sql_proxy` by following the instructions [here](https://cloud.google.com/sql/docs/postgres/sql-proxy#install). Instructions are provided below for using the proxy with a TCP connection or a Unix Domain Socket. On Linux or Mac OS you can use either option, but on Windows the proxy currently requires a TCP connection. ### Launch proxy with TCP To run the sample locally with a TCP connection, set environment variables and launch the proxy as shown below. #### Linux / Mac OS Use these terminal commands to initialize environment variables: ```bash export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service/account/key.json export DB_HOST='127.0.0.1:5432' export DB_USER='' export DB_PASS='' export DB_NAME='' ``` Note: Saving credentials in environment variables is convenient, but not secure - consider a more secure solution such as [Secret Manager](https://cloud.google.com/secret-manager/docs/overview) to help keep secrets safe. Then use this command to launch the proxy in the background: ```bash ./cloud_sql_proxy -instances=::=tcp:5432 -credential_file=$GOOGLE_APPLICATION_CREDENTIALS & ``` #### Windows/PowerShell Use these PowerShell commands to initialize environment variables: ```powershell $env:GOOGLE_APPLICATION_CREDENTIALS="" $env:DB_HOST="127.0.0.1:5432" $env:DB_USER="" $env:DB_PASS="" $env:DB_NAME="" ``` Note: Saving credentials in environment variables is convenient, but not secure - consider a more secure solution such as [Secret Manager](https://cloud.google.com/secret-manager/docs/overview) to help keep secrets safe. Then use this command to launch the proxy in a separate PowerShell session: ```powershell Start-Process -filepath "C:\" -ArgumentList "-instances=::=tcp:5432 -credential_file=" ``` ### Launch proxy with Unix Domain Socket NOTE: this option is currently only supported on Linux and Mac OS. Windows users should use the [Launch proxy with TCP](#launch-proxy-with-tcp) option. To use a Unix socket, you'll need to create a directory and give write access to the user running the proxy. For example: ```bash sudo mkdir /path/to/the/new/directory sudo chown -R $USER /path/to/the/new/directory ``` You'll also need to initialize an environment variable containing the directory you just created: ```bash export DB_SOCKET_DIR=/path/to/the/new/directory ``` Use these terminal commands to initialize other environment variables as well: ```bash export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service/account/key.json export INSTANCE_CONNECTION_NAME='::' export DB_USER='' export DB_PASS='' export DB_NAME='' ``` Note: Saving credentials in environment variables is convenient, but not secure - consider a more secure solution such as [Secret Manager](https://cloud.google.com/secret-manager/docs/overview) to help keep secrets safe. Then use this command to launch the proxy in the background: ```bash ./cloud_sql_proxy -dir=$DB_SOCKET_DIR --instances=$INSTANCE_CONNECTION_NAME --credential_file=$GOOGLE_APPLICATION_CREDENTIALS & ``` ### Testing the application Next, setup install the requirements into a virtual environment: ```bash virtualenv --python python3 env source env/bin/activate pip install -r requirements.txt ````` Finally, start the application: ```bash python main.py ``` Navigate towards `http://127.0.0.1:8080` to verify your application is running correctly. ## Google App Engine Standard To run on GAE-Standard, create an App Engine project by following the setup for these [instructions](https://cloud.google.com/appengine/docs/standard/python3/quickstart#before-you-begin). First, update `app.standard.yaml` with the correct values to pass the environment variables into the runtime. Next, the following command will deploy the application to your Google Cloud project: ```bash gcloud app deploy app.standard.yaml ``` ## Google App Engine Flexible To run on GAE-Flexible, create an App Engine project by following the setup for these [instructions](https://cloud.google.com/appengine/docs/flexible/python/quickstart#before-you-begin). First, update `app.flexible.yaml` with the correct values to pass the environment variables into the runtime. Also update this file to configure either a TCP or a Unix domain socket connection to your database. Next, the following command will deploy the application to your Google Cloud project: ```bash gcloud app deploy app.flexible.yaml ``` ## Deploy to Cloud Run See the [Cloud Run documentation](https://cloud.google.com/sql/docs/postgres/connect-run) for more details on connecting a Cloud Run service to Cloud SQL. 1. Build the container image: ```sh gcloud builds submit --tag gcr.io/[YOUR_PROJECT_ID]/run-sql ``` 2. Deploy the service to Cloud Run: ```sh gcloud run deploy run-sql --image gcr.io/[YOUR_PROJECT_ID]/run-sql ``` Take note of the URL output at the end of the deployment process. 3. Configure the service for use with Cloud Run ```sh gcloud run services update run-sql \ --add-cloudsql-instances [INSTANCE_CONNECTION_NAME] \ --set-env-vars INSTANCE_CONNECTION_NAME=[INSTANCE_CONNECTION_NAME],\ DB_USER=[MY_DB_USER],DB_PASS=[MY_DB_PASS],DB_NAME=[MY_DB] ``` Replace environment variables with the correct values for your Cloud SQL instance configuration. This step can be done as part of deployment but is separated for clarity. It is recommended to use the [Secret Manager integration](https://cloud.google.com/run/docs/configuring/secrets) for Cloud Run instead of using environment variables for the SQL configuration. The service injects the SQL credentials from Secret Manager at runtime via an environment variable. Create secrets via the command line: ```sh echo -n $INSTANCE_CONNECTION_NAME | \ gcloud secrets create [INSTANCE_CONNECTION_NAME_SECRET] --data-file=- ``` Deploy the service to Cloud Run specifying the env var name and secret name: ```sh gcloud beta run deploy SERVICE --image gcr.io/[YOUR_PROJECT_ID]/run-sql \ --add-cloudsql-instances $INSTANCE_CONNECTION_NAME \ --update-secrets INSTANCE_CONNECTION_NAME=[INSTANCE_CONNECTION_NAME_SECRET]:latest,\ DB_USER=[DB_USER_SECRET]:latest, \ DB_PASS=[DB_PASS_SECRET]:latest, \ DB_NAME=[DB_NAME_SECRET]:latest ``` 4. Navigate your browser to the URL noted in step 2. For more details about using Cloud Run see http://cloud.run. Review other [Python on Cloud Run samples](../../../run/).