Skip to content

Commit 588dda6

Browse files
authored
fix: add deletion_protection to google workflow resources (terraform-google-modules#779)
1 parent 6aaaf12 commit 588dda6

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

eventarc/workflows/main.tf

+2
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ resource "google_workflows_workflow" "default" {
9393
region = "us-central1"
9494
description = "Workflow that returns information about storage events"
9595

96+
deletion_protection = false # set to "true" in production
97+
9698
# Note that $$ is needed for Terraform
9799
source_contents = <<EOF
98100
main:

workflows/basic/main.tf

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ resource "google_workflows_workflow" "default" {
4343
region = "us-central1"
4444
description = "A sample workflow"
4545
service_account = google_service_account.default.id
46+
47+
deletion_protection = false # set to "true" in production
48+
4649
labels = {
4750
env = "test"
4851
}

workflows/cloud_run_job/main.tf

+2
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ resource "google_workflows_workflow" "default" {
158158
region = "us-central1"
159159
description = "Workflow that routes a Cloud Storage event and executes a Cloud Run job"
160160

161+
deletion_protection = false # set to "true" in production
162+
161163
# Note that $$ is needed for Terraform
162164
source_contents = <<EOF
163165
main:

0 commit comments

Comments
 (0)