Skip to content

Commit

Permalink
comment usage of folder_deletion_protection until update of cloud fun…
Browse files Browse the repository at this point in the history
…ction module
  • Loading branch information
daniel-cit committed Nov 5, 2024
1 parent 7f29131 commit e888cef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions 1-org/envs/shared/folders.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
*****************************************/

resource "google_folder" "common" {
display_name = "${local.folder_prefix}-common"
parent = local.parent
deletion_protection = var.folder_deletion_protection
display_name = "${local.folder_prefix}-common"
parent = local.parent
# deletion_protection = var.folder_deletion_protection // uncommnet after updating "GoogleCloudPlatform/cloud-functions/google" to provider v6
}

resource "google_folder" "network" {
display_name = "${local.folder_prefix}-network"
parent = local.parent
deletion_protection = var.folder_deletion_protection
display_name = "${local.folder_prefix}-network"
parent = local.parent
# deletion_protection = var.folder_deletion_protection // uncommnet after updating "GoogleCloudPlatform/cloud-functions/google" to provider v6
}

0 comments on commit e888cef

Please sign in to comment.