Skip to content

Commit

Permalink
update: add missing output descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedizon committed Jan 2, 2025
1 parent 6c94489 commit 1ab3548
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/cis/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
output "enabled_rules" {
value = module.cis_rules.rules
value = module.cis_rules.rules
description = "The output of the enabled CIS rules"
}

output "config_recorder_id" {
Expand Down
3 changes: 2 additions & 1 deletion modules/cis-1-2-rules/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
output "rules" {
value = local.enabled_rules
value = local.enabled_rules
description = "Enable rules"
}
3 changes: 2 additions & 1 deletion modules/conformance-pack/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
output "arn" {
value = aws_config_conformance_pack.default.arn
value = aws_config_conformance_pack.default.arn
description = "ARN of the conformance pack"
}

0 comments on commit 1ab3548

Please sign in to comment.