Featured resource
2025 Tech Upskilling Playbook
Tech Upskilling Playbook

Build future-ready tech teams and hit key business milestones with seven proven plays from industry leaders.

Check it out
  • Lab
    • Libraries: If you want this lab, consider one of these libraries.
    • Cloud
Labs

Securing Microservices in Cloud Run

In this lab, you'll be tasked with deploying an off-the-shelf Cloud Run application that takes headless screenshots of web page URLs. The screenshots are written to a Google Cloud Storage bucket. However, to reduce an attack vector and pass an internal security audit, you must ensure your public web service has no actual access to Google Cloud Storage. To accomplish this, you will deploy a public frontend, which can only speak to the backend. The backend itself must also follow the principle of least privilege. To perform this hands-on lab, you should be familiar with the Cloud Shell and have some experience with Cloud Run.

Lab platform
Lab Info
Level
Intermediate
Last updated
Jun 28, 2025
Duration
30m

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
Table of Contents
  1. Challenge

    Build the Frontend and Backend Container Images
    1. Obtain the code from GitHub:

      git clone https://github.com/ACloudGuru-Resources/content-google-cloud-run-deep-dive/
      
      git clone https://github.com/ACloudGuru-Resources/content-google-cloudrun-deepdive-screenshot screenshot-backend
      
    2. Create a Cloud Storage bucket in your project with the naming convention: your-project-screenshots.

    3. Update screenshot.js in the backend application, replacing the values of GOOGLE_CLOUD_PROJECT_ID and BUCKET_NAME with your project ID and the name of the bucket you just created.

    4. Use Cloud Build to create container images called screenshot-frontend and screenshot-backend, and store them in Container Registry in your project.

  2. Challenge

    Deploy the Backend Service
    1. Create a service account for the backend service called backend-identity.

    2. Create an IAM policy binding for the project that grants this service account the role of roles/storage.objectCreator. (Hint: Use the gcloud projects add-iam-policy-binding command.)

    3. Deploy the screenshot-backend service, using the backend-identity service account as its runtime identity. Do not allow unauthenticated invocations, and grant 512 mebibytes of memory to the service.

    4. Test that the service has been deployed successfully with curl in the Cloud Shell terminal. First, obtain an auth token:

      TOKEN=$(gcloud auth print-identity-token)
      
    5. Access your service URL, with the token in the header, specifying a further URL to screenshot (in this example, we screenshot google.com):

      curl -H "Authorization: Bearer $TOKEN" https://<SCREENSHOT-BACKEND_URL>.run.app/?url=https://www.google.com
      
  3. Challenge

    Deploy the Frontend Service
    1. Create a service account for the frontend service called frontend-identity.
    2. Create an IAM policy binding that says the frontend-identity service account is permitted to invoke the screenshot-backend service. (Hint: Use the gcloud run services add-iam-policy-binding command.)
    3. Deploy the screenshot-frontend service, using the frontend-identity service account as its runtime identity. Allow unauthenticated invocations, and use --set-env-vars to set a BACKEND_URL environment variable with the backend-service URL as its value.
    4. If you are successful, you should be able to access your frontend service and provide it with a URL to screenshot, then find that screenshot in your GCS bucket.
About the author

Pluralsight Skills gives leaders confidence they have the skills needed to execute technology strategy. Technology teams can benchmark expertise across roles, speed up release cycles and build reliable, secure products. By leveraging our expert content, skill assessments and one-of-a-kind analytics, keep up with the pace of change, put the right people on the right projects and boost productivity. It's the most effective path to developing tech skills at scale.

Real skill practice before real-world application

Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.

Learn by doing

Engage hands-on with the tools and technologies you’re learning. You pick the skill, we provide the credentials and environment.

Follow your guide

All labs have detailed instructions and objectives, guiding you through the learning process and ensuring you understand every step.

Turn time into mastery

On average, you retain 75% more of your learning if you take time to practice. Hands-on labs set you up for success to make those skills stick.

Get started with Pluralsight