File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ resource "google_workflows_workflow" "default" {
93
93
region = " us-central1"
94
94
description = " Workflow that returns information about storage events"
95
95
96
+ deletion_protection = false # set to "true" in production
97
+
96
98
# Note that $$ is needed for Terraform
97
99
source_contents = << EOF
98
100
main:
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ resource "google_workflows_workflow" "default" {
43
43
region = " us-central1"
44
44
description = " A sample workflow"
45
45
service_account = google_service_account. default . id
46
+
47
+ deletion_protection = false # set to "true" in production
48
+
46
49
labels = {
47
50
env = " test"
48
51
}
Original file line number Diff line number Diff line change @@ -158,6 +158,8 @@ resource "google_workflows_workflow" "default" {
158
158
region = " us-central1"
159
159
description = " Workflow that routes a Cloud Storage event and executes a Cloud Run job"
160
160
161
+ deletion_protection = false # set to "true" in production
162
+
161
163
# Note that $$ is needed for Terraform
162
164
source_contents = << EOF
163
165
main:
You can’t perform that action at this time.
0 commit comments