diff --git a/modules/folder/README.md b/modules/folder/README.md index 58b9b985..2190eaac 100644 --- a/modules/folder/README.md +++ b/modules/folder/README.md @@ -315,7 +315,7 @@ module "folder" { | [logging_sinks](variables.tf#L105) | Logging sinks to create for this folder. | map(object({…})) | | {} | | [name](variables.tf#L126) | Folder name. | string | | null | | [org_policies](variables.tf#L132) | Organization policies applied to this folder keyed by policy name. | map(object({…})) | | {} | -| [org_policies_data_path](variables.tf#L172) | | string | | null | +| [org_policies_data_path](variables.tf#L172) | Path containing org policies in YAML format. | string | | null | | [parent](variables.tf#L178) | Parent in folders/folder_id or organizations/org_id format. | string | | null | | [tag_bindings](variables.tf#L188) | Tag bindings for this folder, in key => tag value id format. | map(string) | | null | diff --git a/modules/folder/variables.tf b/modules/folder/variables.tf index ea6b1231..359531b7 100644 --- a/modules/folder/variables.tf +++ b/modules/folder/variables.tf @@ -170,7 +170,7 @@ variable "org_policies" { } variable "org_policies_data_path" { - description = "" + description = "Path containing org policies in YAML format." type = string default = null } diff --git a/modules/organization/README.md b/modules/organization/README.md index cd7d2d71..84a7da84 100644 --- a/modules/organization/README.md +++ b/modules/organization/README.md @@ -340,7 +340,7 @@ module "org" { | [logging_exclusions](variables.tf#L122) | Logging exclusions for this organization in the form {NAME -> FILTER}. | map(string) | | {} | | [logging_sinks](variables.tf#L129) | Logging sinks to create for this organization. | map(object({…})) | | {} | | [org_policies](variables.tf#L151) | Organization policies applied to this organization keyed by policy name. | map(object({…})) | | {} | -| [org_policies_data_path](variables.tf#L200) | | string | | null | +| [org_policies_data_path](variables.tf#L200) | Path containing org policies in YAML format. | string | | null | | [tag_bindings](variables.tf#L206) | Tag bindings for this organization, in key => tag value id format. | map(string) | | null | | [tags](variables.tf#L212) | Tags by key name. The `iam` attribute behaves like the similarly named one at module level. | map(object({…})) | | null | diff --git a/modules/organization/variables.tf b/modules/organization/variables.tf index 5ace5b1e..7093a118 100644 --- a/modules/organization/variables.tf +++ b/modules/organization/variables.tf @@ -198,7 +198,7 @@ variable "organization_id" { } variable "org_policies_data_path" { - description = "" + description = "Path containing org policies in YAML format." type = string default = null } diff --git a/modules/project/README.md b/modules/project/README.md index eea627eb..c43ddd78 100644 --- a/modules/project/README.md +++ b/modules/project/README.md @@ -470,7 +470,7 @@ output "compute_robot" { | [logging_sinks](variables.tf#L102) | Logging sinks to create for this project. | map(object({…})) | | {} | | [metric_scopes](variables.tf#L124) | List of projects that will act as metric scopes for this project. | list(string) | | [] | | [org_policies](variables.tf#L136) | Organization policies applied to this project keyed by policy name. | map(object({…})) | | {} | -| [org_policies_data_path](variables.tf#L176) | | string | | null | +| [org_policies_data_path](variables.tf#L176) | Path containing org policies in YAML format. | string | | null | | [oslogin](variables.tf#L182) | Enable OS Login. | bool | | false | | [oslogin_admins](variables.tf#L188) | List of IAM-style identities that will be granted roles necessary for OS Login administrators. | list(string) | | [] | | [oslogin_users](variables.tf#L196) | List of IAM-style identities that will be granted roles necessary for OS Login users. | list(string) | | [] | diff --git a/modules/project/variables.tf b/modules/project/variables.tf index 4e3fec64..7cd36c82 100644 --- a/modules/project/variables.tf +++ b/modules/project/variables.tf @@ -174,7 +174,7 @@ variable "org_policies" { } variable "org_policies_data_path" { - description = "" + description = "Path containing org policies in YAML format." type = string default = null }