forked from schubergphilis/terraform-aws-mcaf-landing-zone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
34 lines (28 loc) · 957 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
25
26
27
28
29
30
31
32
33
34
output "kms_key_arn" {
description = "ARN of KMS key for master account"
value = module.kms_key.arn
}
output "kms_key_id" {
description = "ID of KMS key for master account"
value = module.kms_key.id
}
output "kms_key_audit_arn" {
description = "ARN of KMS key for audit account"
value = module.kms_key_audit.arn
}
output "kms_key_audit_id" {
description = "ID of KMS key for audit account"
value = module.kms_key_audit.id
}
output "kms_key_logging_arn" {
description = "ARN of KMS key for logging account"
value = module.kms_key_logging.arn
}
output "kms_key_logging_id" {
description = "ID of KMS key for logging account"
value = module.kms_key_logging.id
}
output "monitor_iam_activity_sns_topic_arn" {
description = "ARN of the SNS Topic in the Audit account for IAM activity monitoring notifications"
value = var.monitor_iam_activity ? aws_sns_topic.iam_activity[0].arn : ""
}