We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c94489 commit 1ab3548Copy full SHA for 1ab3548
examples/cis/outputs.tf
@@ -1,5 +1,6 @@
1
output "enabled_rules" {
2
- value = module.cis_rules.rules
+ value = module.cis_rules.rules
3
+ description = "The output of the enabled CIS rules"
4
}
5
6
output "config_recorder_id" {
modules/cis-1-2-rules/outputs.tf
@@ -1,3 +1,4 @@
output "rules" {
- value = local.enabled_rules
+ value = local.enabled_rules
+ description = "Enable rules"
modules/conformance-pack/outputs.tf
output "arn" {
- value = aws_config_conformance_pack.default.arn
+ value = aws_config_conformance_pack.default.arn
+ description = "ARN of the conformance pack"
0 commit comments