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.
1 parent 1bc9458 commit 922b046Copy full SHA for 922b046
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 = "your-service-name" # Replace with your desired service
+ 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 = "REGION-docker.pkg.dev/PROJECT_ID/REPOSITORY/IMAGE" # Replace with your container image path
+ image = "us-docker.pkg.dev/cloudrun/container/hello" # Replace with your container image
28
}
29
30
0 commit comments