We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 081c574 + 1cfc3de commit efce91dCopy full SHA for efce91d
run/custom_domain_mapping/main.tf
@@ -17,14 +17,14 @@
17
# [START cloudrun_custom_domain_mapping_parent_tag]
18
# [START cloudrun_custom_domain_mapping_run_service]
19
resource "google_cloud_run_v2_service" "default" {
20
- name = "custom-domain"
+ name = "custom-domain" # Replace with your service name
21
location = "us-central1"
22
23
deletion_protection = false # set to true to prevent destruction of the resource
24
25
template {
26
containers {
27
- image = "us-docker.pkg.dev/cloudrun/container/hello"
+ image = "us-docker.pkg.dev/cloudrun/container/hello" # Replace with your container image
28
}
29
30
0 commit comments