diff --git a/modules/organization/README.md b/modules/organization/README.md index 45a298a0..7a6ffeca 100644 --- a/modules/organization/README.md +++ b/modules/organization/README.md @@ -240,6 +240,7 @@ module "org" { + ## Variables @@ -270,9 +271,10 @@ module "org" { |---|---|:---:| | custom_role_id | Map of custom role IDs created in the organization. | | | custom_roles | Map of custom roles resources created in the organization. | | -| firewall_policies | Map of firewall policy resources created in this folder. | | -| firewall_policy_id | Map of firewall policy ids created in this folder. | | +| firewall_policies | Map of firewall policy resources created in the organization. | | +| firewall_policy_id | Map of firewall policy ids created in the organization. | | | organization_id | Organization id dependent on module resources. | | | sink_writer_identities | Writer identities created for each sink. | | + diff --git a/modules/organization/outputs.tf b/modules/organization/outputs.tf index 4c67183c..13b11de3 100644 --- a/modules/organization/outputs.tf +++ b/modules/organization/outputs.tf @@ -34,12 +34,12 @@ output "custom_roles" { } output "firewall_policies" { - description = "Map of firewall policy resources created in this folder." + description = "Map of firewall policy resources created in the organization." value = { for k, v in google_compute_firewall_policy.policy : k => v } } output "firewall_policy_id" { - description = "Map of firewall policy ids created in this folder." + description = "Map of firewall policy ids created in the organization." value = { for k, v in google_compute_firewall_policy.policy : k => v.id } }