1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
output "recorder_id" {
description = "AWS Config recorder name"
value = aws_config_configuration_recorder.this.id
}
output "aggregator_id" {
description = "Config aggregator name"
value = aws_config_configuration_aggregator.this.id
}
output "aggregator_arn" {
description = "Config aggregator ARN"
value = aws_config_configuration_aggregator.this.arn
}
output "role_arn" {
description = "IAM role ARN used by Config"
value = aws_iam_role.config.arn
}
output "managed_rule_arns" {
description = "Map of managed rule logical key to rule ARN"
value = { for k, v in aws_config_config_rule.managed : k => v.arn }
}
|