forked from plus3it/terraform-aws-tardigrade-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
24 lines (20 loc) · 786 Bytes
/
outputs.tf
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 "config_iam_role_arn" {
description = "The Amazon Resource Name (ARN) of the config service role"
value = local.create_iam_role ? aws_iam_role.this[0].arn : ""
}
output "config_iam_role_name" {
description = "The name of the config service role"
value = local.create_iam_role ? aws_iam_role.this[0].name : ""
}
output "config_recorder_id" {
description = "The name of the AWS Config recorder"
value = aws_config_configuration_recorder.this.id
}
output "config_delivery_channel_id" {
description = "The name of the AWS Config delivery channel"
value = aws_config_delivery_channel.this.id
}
output "config_sns_topic_arn" {
description = "The Amazon Resource Name (ARN) of the config SNS topic"
value = aws_sns_topic.this.arn
}