This tutorial shows how to create a web application on Cloud Run with access restricted to logged-in users and data stored in PostgreSQL. Identity Platform integration handles end-user authentication and provides user ID tokens to authorize the service to query a Cloud SQL database. This service has a public client that lets external users log in and access a voting UI to cast votes.
For simplicity, this tutorial uses Google as a provider: users must sign in with a Google account. However, you can use other providers or authentication methods to sign in users.
This service minimizes security risks by using Secret Manager, to protect sensitive data used to connect to the Cloud SQL instance, and using a least-privilege service identity.
During an end-user authentication in this sample:
- The client requests a signed ID token for the user based on Identity Platform.
- The signed ID token is sent with requests to a server.
- The server verifies user's identity using that signed ID token and grants access to the Cloud SQL PostgreSQL database.
This tutorial does not show the use of the following authentication method:
- IAM authentication, which uses IAM roles to automatically assert and verify identities. This is recommended for service-to-service authentication, not individual identities. To learn more about service-to-service authentication, see Securing Cloud Run services tutorial. Currently, IAM-based authentication and ID token methods can not be combined.
Objectives
Write, build, and deploy a service to Cloud Run that shows how to:
Authenticate end-users to access the Cloud Run service using Identity Platform.
Connect a Cloud Run service to a postgreSQL database using Secret Manager to handle sensitive data.
Create a least-privilege service identity for minimal access to Google Cloud resources.
Costs
This tutorial uses billable components of Google Cloud, including:
Use the Pricing Calculator to generate a cost estimate based on your projected usage.
You should be able to complete this project within the Free Trial credits.
New Cloud Platform users might be eligible for a free trial.Before you begin
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud Console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Cloud project. Learn how to confirm that billing is enabled for your project.
- Enable the Cloud Run, Secret Manager, Cloud SQL, Container Registry, and Cloud Build APIs.
- Install and initialize the Cloud SDK.
Setting up gcloud
defaults
To configure gcloud with defaults for your Cloud Run service:
Set your default project:
gcloud config set project PROJECT_ID
Replace PROJECT_ID with the name of the project you created for this tutorial.
If you are using Cloud Run (fully managed), configure gcloud for your chosen region and specify
managed
as your Cloud Run platform:gcloud config set run/region REGION gcloud config set run/platform managed
Replace REGION with the supported Cloud Run region of your choice.
Cloud Run locations
Cloud Run is regional, which means the infrastructure that
runs your Cloud Run services is located in a specific region and is
managed by Google to be redundantly available across
all the zones within that region.
Meeting your latency, availability, or durability requirements are primary
factors for selecting the region where your Cloud Run services are run.
You can generally select the region nearest to your users but you should consider
the location of the other Google Cloud
products that are used by your Cloud Run service.
Using Google Cloud products together across multiple locations can affect
your service's latency as well as cost.
Cloud Run is available in the following regions:
Subject to Tier 1 pricing
asia-east1
(Taiwan)asia-northeast1
(Tokyo)asia-northeast2
(Osaka)europe-north1
(Finland)europe-west1
(Belgium)europe-west4
(Netherlands)us-central1
(Iowa)us-east1
(South Carolina)us-east4
(Northern Virginia)us-west1
(Oregon)
Subject to Tier 2 pricing
asia-east2
(Hong Kong)asia-northeast3
(Seoul, South Korea)asia-southeast1
(Singapore)asia-southeast2
(Jakarta)asia-south1
(Mumbai, India)australia-southeast1
(Sydney)europe-west2
(London, UK)europe-west3
(Frankfurt, Germany)europe-west6
(Zurich, Switzerland)northamerica-northeast1
(Montreal)southamerica-east1
(Sao Paulo, Brazil)us-west2
(Los Angeles)us-west3
(Las Vegas)us-west4
(Salt Lake City)
If you already created a Cloud Run service, you can view the region in the Cloud Run dashboard in the Cloud Console.
Retrieving the code sample
To retrieve the code sample for use:
Clone the sample app repository to your local machine:
Node.js
git clone https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git
Alternatively, you can download the sample as a zip file and extract it.
Python
git clone https://github.com/GoogleCloudPlatform/python-docs-samples.git
Alternatively, you can download the sample as a zip file and extract it.
Java
git clone https://github.com/GoogleCloudPlatform/java-docs-samples.git
Alternatively, you can download the sample as a zip file and extract it.
Change to the directory that contains the Cloud Run sample code:
Node.js
cd nodejs-docs-samples/run/idp-sql/
Python
cd python-docs-samples/run/idp-sql/
Java
cd java-docs-samples/run/idp-sql/
Visualizing the architecture

A user makes the first request to the service.
The Cloud Run service provides the client with a user login form.
The user logs in via the Google sign-in pop-up window that uses Identity Platform.
The authentication flow redirects the user back to the Cloud Run service along with the user's identity.
When the user casts a vote, the client mints an ID token and appends to server requests. The server verifies the ID token and grants write access to Cloud SQL.
Understanding the code
The sample is implemented as client and server, as described next.
Integrating with Identity Platform: client-side code
This sample uses Firebase SDKs to integrate with Identity Platform in order to sign-in and manage users. To connect to Identity Platform, the client-side javascript holds the reference to the project's credentials as a config object and imports the necessary Firebase JavaScript SDKs:
The Firebase JavaScript SDK handles the sign-in flow by prompting users to sign-in with their Google Accounts by opening a popup window and then redirecting back to the service.
When a user successfully signs in, Firebase methods mint ID tokens to uniquely
identify and grant access for the user. The client communicates with the
server by adding the Authorization
header with the ID token.
Integrating with Identity Platform: server-side code
The server uses the Firebase Admin SDK
to integrate with Identity Platform and verify the identity of the user from the user ID token that is sent from the
client. If the provided ID token has the correct format, is not expired, and is
properly signed, the method returns the decoded ID token needed for the
extraction of the Identity Platform uid
for that user.
Node.js
Python
Java
Connecting to Cloud SQL
The service connects to the Cloud SQL
instance unix domain socket using the format: /cloudsql/CLOUD_SQL_CONNECTION_NAME
.
Node.js
Python
Java
Use the Spring Cloud Google Cloud PostgreSQL starter integration to interact with your PostgreSQL databases in Google Cloud SQL using Spring JDBC libraries. Set your Cloud SQL for MySQL config to auto-configure aDataSource
bean, which, coupled with Spring JDBC, provides a JdbcTemplate
object bean that allows for operations such as querying and modifying a database.
Handling sensitive configuration with Secret Manager
Secret Manager allows for centralized and secure storage of sensitive data such as Cloud SQL configuration. The service loads the Cloud SQL credentials from Secret Manager via the client library.
Node.js
Python
Java
Shipping the service
Identity Platform setup
Identity Platform requires manual setup in the Cloud Console.
Go to the Identity Platform Marketplace page in the Cloud Console.
Click Enable Identity Platform. This creates an OAuth2 Client Id with the name:
Web client (auto created by Google Service)
.Download the generated OAuth2 ID:
In a new window, go to the APIs & Services > Credentials page
On the record for "Web client (auto created by Google Service)", click the Download icon.
In the downloaded JSON output, note the
client_id
andclient_secret
.
Configure Google as a provider:
Go to the Identity Providers page in the Cloud Console.
Click Add A Provider.
Select Google from the list.
In the Web SDK Configuration settings, enter the values from the JSON you downloaded download earlier:
Web Client ID:
client_id
Web Client Secret:
client_secret
Click Configure Screen.
Select External for User type.
Fill in the required fields (Support email, developer email).
Continue until you reach the Summary page.
Under "Configure your application", click Setup Details. Copy the snippet into the sample's
static/config.js
to initialize the Identity Platform Client SDK.Click Save.
Deploying the service
Follow the steps below to complete infrastructure provisioning and deployment or automate the process in Cloud Shell by clicking "Run on Google Cloud":
Create a Cloud SQL instance with postgreSQL database using the console or CLI:
gcloud sql instances create CLOUD_SQL_INSTANCE_NAME \ --database-version=POSTGRES_12 \ --region=CLOUD_SQL_REGION \ --cpu=2 \ --memory=7680MB \ --root-password=DB_PASSWORD
Add your Cloud SQL credential values to
postgres-secrets.json
:Node.js
Python
Java
Create a versioned secret using the console or CLI:
gcloud secrets create idp-sql-secrets \ --replication-policy="automatic" \ --data-file=postgres-secrets.json
Create a service account using the console or CLI:
gcloud iam service-accounts create idp-sql-identity
Add bindings for Secret Manager and Cloud SQL access using the console or CLI:
Allow service account to access the created secret:
gcloud secrets add-iam-policy-binding idp-sql-secrets \ --member serviceAccount:idp-sql-identity@PROJECT_ID.iam.gserviceaccount.com \ --role roles/secretmanager.secretAccessor
Allow service account to access Cloud SQL:
gcloud projects add-iam-policy-binding PROJECT_ID \ --member serviceAccount:idp-sql-identity@PROJECT_ID.iam.gserviceaccount.com \ --role roles/cloudsql.client
Build the container image using Cloud Build:
Node.js
gcloud builds submit --tag gcr.io/PROJECT_ID/idp-sql
Python
gcloud builds submit --tag gcr.io/PROJECT_ID/idp-sql
Java
This sample uses Jib to build Docker images using common Java tools. Jib optimizes container builds without the need for a Dockerfile or having Docker installed. Learn more about building Java containers with Jib.
Use the gcloud credential helper to authorize Docker to push to your Container Registry.
gcloud auth configure-docker
Use the Jib Maven Plugin to build and push the container to Container Registry.
mvn compile jib:build -Dimage=gcr.io/PROJECT_ID/idp-sql
Deploy the container image to Cloud Run using the console or CLI:
gcloud run deploy idp-sql \ --image gcr.io/PROJECT_ID/idp-sql \ --allow-unauthenticated \ --service-account idp-sql-identity@PROJECT_ID.iam.gserviceaccount.com \ --add-cloudsql-instances PROJECT_ID:REGION:CLOUD_SQL_INSTANCE_NAME \ --update-env-vars CLOUD_SQL_CREDENTIALS_SECRET=projects/PROJECT_ID/secrets/idp-sql-secrets/versions/latest
Specifically using flags,
--service-account
,--add-cloudsql-instances
, and--update-env-vars
to specify the service identity, the Cloud SQL instance connection, and the full secret path name as an environment variable, respectively.
Finishing touches
Authorize the Cloud Run service URL as an allowed redirect after signing in the user:
Edit the Google provider by clicking the pen icon in the Identity Providers page.
Click Add Domain under Authorized Domains and enter the Cloud Run service URL.
You can locate the service URL in the logs after the build or deployment or you can find it anytime using:
gcloud run services describe idp-sql --format 'value(status.url)'
Trying it out
To try out the complete service:
Navigate your browser to the URL provided by the deployment step above.
Click the Sign in with Google button and go through the authentication flow.
Add your vote!
It should look like this:
If you choose to continue developing these services, remember that they have restricted Identity and Access Management (IAM) access to the rest of Google Cloud and will need to be given additional IAM roles to access many other services.
Cleaning up
If you created a new project for this tutorial, delete the project. If you used an existing project and wish to keep it without the changes added in this tutorial, delete resources created for the tutorial.
Deleting the project
The easiest way to eliminate billing is to delete the project that you created for the tutorial.
To delete the project:
- In the Cloud Console, go to the Manage resources page.
- In the project list, select the project that you want to delete, and then click Delete.
- In the dialog, type the project ID, and then click Shut down to delete the project.
Deleting tutorial resources
Delete the Cloud Run service you deployed in this tutorial:
gcloud run services delete SERVICE-NAME
Where SERVICE-NAME is your chosen service name.
You can also delete Cloud Run services from the Google Cloud Console.
Remove the gcloud default region configuration you added during tutorial setup:
gcloud config unset run/region
Remove the project configuration:
gcloud config unset project
Delete other Google Cloud resources created in this tutorial:
- Delete the service container image named
gcr.io/PROJECT_ID/vote
from Container Registry - Delete the service account
vote-identity@PROJECT_ID.iam.gserviceaccount.com
- Delete the Cloud SQL instance
- Delete the secret in Secret Manager
- Delete the service container image named
What's next
- Dive deeper into Connecting from Cloud Run (fully managed) to Cloud SQL
- Learn more about sign in methods and managing users with Identity Platform
- Review other ways to authenticate developers, services, and users of services deployed to Cloud Run
- Explore other Cloud Run demos, tutorials, and samples or how the community uses Cloud Run