generated from aws-ia/terraform-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathoutputs.tf
33 lines (29 loc) · 1.09 KB
/
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
##################################################
# Security Hub
##################################################
output "securityhub_account" {
description = "Security Hub AWS account configuration."
value = aws_securityhub_account.this
}
output "finding_aggregator" {
description = "Security Hub finding aggregator configuration."
value = aws_securityhub_finding_aggregator.this
}
##################################################
# Security Hub Subscriptions
##################################################
output "product_subscription" {
description = "Security Hub products subscriptions."
value = aws_securityhub_product_subscription.this
}
output "standards_subscription" {
description = "Security Hub compliance standards subscriptions."
value = aws_securityhub_standards_subscription.this
}
##################################################
# Security Hub Action Targets
##################################################
output "action_target" {
description = "Security Hub custome action targets."
value = aws_securityhub_action_target.this
}