Create a Cloud Run service for a custom domain

Sample demonstrating how to create a Cloud Run service to use. Once created, you can map your Cloud Run service to a custom domain. Replace the value for name with your own service name.

Explore further

For detailed documentation that includes this code sample, see the following:

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_cloud_run_service" "default" {
  name     = "cloud-run-srv"
  location = "us-central1"
  template {
    spec {
      containers {
        image = "gcr.io/cloudrun/hello"
      }
    }
  }
  traffic {
    percent         = 100
    latest_revision = true
  }
}

What's next

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