Skip to content
Merged
Changes from 1 commit
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 = "your-service-name" # Replace with your desired service
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 = "REGION-docker.pkg.dev/PROJECT_ID/REPOSITORY/IMAGE" # Replace with your container image path
}
}
}
Expand Down