1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
output "id" {
description = "Security Hub account ID (AWS account ID)"
value = aws_securityhub_account.this.id
}
output "standards_subscription_arns" {
description = "Map of logical standard key to subscription ARN"
value = { for k, v in aws_securityhub_standards_subscription.this : k => v.id }
}
output "member_ids" {
description = "Map of logical key to Security Hub member account ID"
value = { for k, v in aws_securityhub_member.this : k => v.id }
}
|