Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions run/custom_domain_mapping/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
# [START cloudrun_custom_domain_mapping_parent_tag]
# [START cloudrun_custom_domain_mapping_run_service]
resource "google_cloud_run_v2_service" "default" {
name = "custom-domain"
name = "custom-domain" # Replace with your service name
location = "us-central1"

deletion_protection = false # set to true to prevent destruction of the resource

template {
containers {
image = "us-docker.pkg.dev/cloudrun/container/hello"
image = "us-docker.pkg.dev/cloudrun/container/hello" # Replace with your container image
}
}
}
Expand Down