File tree Expand file tree Collapse file tree 31 files changed +65
-1
lines changed
cloud_run_configuration_concurrency
cloud_run_configuration_containers
cloud_run_configuration_cpu_allocation
cloud_run_configuration_cpu
cloud_run_configuration_description
cloud_run_configuration_environment_variables
cloud_run_configuration_http2
cloud_run_configuration_labels
cloud_run_configuration_max_instances
cloud_run_configuration_memory_limits
cloud_run_configuration_min_instances
cloud_run_configuration_request_timeout
healthchecks_liveness_probe_grpc
healthchecks_liveness_probe_http
healthchecks_startup_probe_http Expand file tree Collapse file tree 31 files changed +65
-1
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ resource "google_cloud_run_v2_service" "default" {
9393 name = " hello-events"
9494 location = " us-central1"
9595
96+ deletion_protection = false # set to "true" in production
97+
9698 template {
9799 containers {
98100 # This container will log received events
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ resource "google_cloud_run_v2_service" "default" {
2020 name = " cloud-run-srv"
2121 location = " us-central1"
2222
23+ deletion_protection = false # set to "true" in production
24+
2325 template {
2426 containers {
2527 image = " us-docker.pkg.dev/cloudrun/container/hello"
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ resource "google_cloud_run_v2_service" "default" {
2121 name = " cloudrun-service-concurrency"
2222 location = " us-central1"
2323
24+ deletion_protection = false # set to "true" in production
25+
2426 template {
2527 containers {
2628 image = " us-docker.pkg.dev/cloudrun/container/hello"
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ resource "google_cloud_run_v2_service" "default" {
2121 name = " cloudrun-service-containers"
2222 location = " us-central1"
2323
24+ deletion_protection = false # set to "true" in production
25+
2426 template {
2527 containers {
2628 image = " us-docker.pkg.dev/cloudrun/container/hello"
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ resource "google_cloud_run_v2_service" "default" {
2121 name = " cloudrun-service-cpu"
2222 location = " us-central1"
2323
24+ deletion_protection = false # set to "true" in production
25+
2426 template {
2527 containers {
2628 image = " us-docker.pkg.dev/cloudrun/container/hello"
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ resource "google_cloud_run_v2_service" "default" {
2121 name = " cloudrun-service-cpu-allocation"
2222 location = " us-central1"
2323
24+ deletion_protection = false # set to "true" in production
25+
2426 template {
2527 containers {
2628 image = " us-docker.pkg.dev/cloudrun/container/hello"
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ resource "google_cloud_run_v2_service" "default" {
2323
2424 description = " This service has a custom description"
2525
26+ deletion_protection = false # set to "true" in production
27+
2628 template {
2729 containers {
2830 image = " us-docker.pkg.dev/cloudrun/container/hello"
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ resource "google_cloud_run_v2_service" "default" {
2121 name = " cloudrun-service-env-var"
2222 location = " us-central1"
2323
24+ deletion_protection = false # set to "true" in production
25+
2426 template {
2527 containers {
2628 image = " us-docker.pkg.dev/cloudrun/container/hello"
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ resource "google_cloud_run_v2_service" "default" {
2121 name = " cloudrun-service-h2c"
2222 location = " us-central1"
2323
24+ deletion_protection = false # set to "true" in production
25+
2426 template {
2527 containers {
2628 image = " us-docker.pkg.dev/cloudrun/container/hello"
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ resource "google_cloud_run_v2_service" "default" {
2121 name = " cloudrun-service-labels"
2222 location = " us-central1"
2323
24+ deletion_protection = false # set to "true" in production
25+
2426 template {
2527 containers {
2628 image = " us-docker.pkg.dev/cloudrun/container/hello"
You can’t perform that action at this time.
0 commit comments