Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
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.

Labs

Path Info

Level
Clock icon Intermediate
Duration
Clock icon 30m
Published
Clock icon Aug 21, 2020

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.

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

What's a lab?

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.

Provided environment for hands-on practice

We will provide the credentials and environment necessary for you to practice right within your browser.

Guided walkthrough

Follow along with the author’s guided walkthrough and build something new in your provided environment!

Did you know?

On average, you retain 75% more of your learning if you get time for practice.

Start learning by doing today

View Plans