variable "parent_folder" {
description = "GCP parent folder ID in the form folders/{id}"
default = ""
type = string
}
...
variable "folder_id" {
description = "The ID of a folder to host this project"
type = string
default = ""
}
Terraform Resources
No response
Detailed design
No response
Additional information
Looking at terraform-example-foundation it look like it's an optional folder where to host the seed-project.
But then every google_folder_iam_member is based on parent_id (if parent_folder provided).
So is it possible to have a folder_id OUTSIDE the parent_folder?
In the case of terraform-example-foundation they create a subfolder within parent_folder, which makes sense.
Just confusing is all...
TL;DR
As per the
variables.tf
file:Terraform Resources
No response
Detailed design
No response
Additional information
Looking at terraform-example-foundation it look like it's an optional folder where to host the seed-project. But then every
google_folder_iam_member
is based onparent_id
(ifparent_folder
provided). So is it possible to have afolder_id
OUTSIDE theparent_folder
? In the case ofterraform-example-foundation
they create a subfolder withinparent_folder
, which makes sense. Just confusing is all...