Skip to content

Commit 2e59c9a

Browse files
authored
fix: ConflictsWith in project org_id & folder_id (#676)
1 parent 21871b2 commit 2e59c9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/fabric-project/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ locals {
2828
}
2929

3030
resource "google_project" "project" {
31-
org_id = local.parent_type == "organizations" ? local.parent_id : ""
32-
folder_id = local.parent_type == "folders" ? local.parent_id : ""
31+
org_id = local.parent_type == "organizations" ? local.parent_id : null
32+
folder_id = local.parent_type == "folders" ? local.parent_id : null
3333
project_id = "${var.prefix}-${var.name}"
3434
name = "${var.prefix}-${var.name}"
3535
billing_account = var.billing_account

0 commit comments

Comments
 (0)