Skip to content

Commit

Permalink
fix: make org id optional
Browse files Browse the repository at this point in the history
  • Loading branch information
abhikaddy committed Oct 2, 2023
1 parent 9381bd5 commit 39d0cc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module "project-factory" {
manage_group = var.group_name != "" ? true : false
random_project_id = var.random_project_id
random_project_id_length = var.random_project_id_length
org_id = var.org_id
org_id = var.folder_id != "" ? null : var.org_id
name = var.name
project_id = var.project_id
shared_vpc = var.svpc_host_project_id
Expand Down

0 comments on commit 39d0cc9

Please sign in to comment.