Fix typo.

This commit is contained in:
Julio Castillo 2021-12-31 13:20:21 +01:00
parent f78902aee8
commit d4adcaced0
2 changed files with 6 additions and 4 deletions

View File

@ -240,6 +240,7 @@ module "org" {
<!-- BEGIN TFDOC -->
## 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. | |
<!-- END TFDOC -->

View File

@ -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 }
}