Custom service account on a Cloud Run service

Map a custom Service Account to a Cloud Run service

Code sample

Terraform

To learn how to apply or remove a Terraform configuration, see Basic Terraform commands. For more information, see the Terraform provider reference documentation.

resource "google_service_account" "cloudrun_service_identity" {
  account_id = "my-service-account"
}

resource "google_cloud_run_v2_service" "default" {
  name     = "id-service"
  location = "us-central1"

  deletion_protection = false # set to "true" in production

  template {
    containers {
      image = "us-docker.pkg.dev/cloudrun/container/hello"
    }
    service_account = google_service_account.cloudrun_service_identity.email
  }
}

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.