generated from aws-ia/terraform-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
outputs.tf
66 lines (58 loc) · 2.12 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
##################################################
# GuardDuty Detector
##################################################
output "guardduty_detector" {
description = "AWS GuardDuty Detector."
value = aws_guardduty_detector.primary
}
##################################################
# GuardDuty Filter
##################################################
output "guardduty_filter" {
description = "AWS GuardDuty Findings Filters definition."
value = aws_guardduty_filter.this
}
##################################################
# GuardDuty IPSet
##################################################
output "guardduty_ipset" {
description = "AWS GuardDuty trusted IPSet configuration."
value = aws_guardduty_ipset.this
}
##################################################
# GuardDuty Threatintelset
##################################################
output "guardduty_threatintelset" {
description = "AWS GuardDuty known ThreatIntelSet configuration."
value = aws_guardduty_threatintelset.this
}
##################################################
# GuardDuty Publishing
##################################################
output "guardduty_publishing" {
description = "AWS GuardDuty Publishing destination to export findings."
value = aws_guardduty_publishing_destination.this
}
output "guardduty_s3_bucket" {
description = "Amazon S3 Bucket created for AWS GuardDuty."
value = module.s3_bucket
}
output "guardduty_replica_bucket" {
description = "Amazon S3 Replica Bucket created for AWS GuardDuty."
value = module.replica_bucket
}
output "guardduty_log_bucket" {
description = "Amazon S3 Log Bucket created for AWS GuardDuty."
value = module.log_bucket
}
##################################################
# KMS Key
##################################################
output "guardduty_kms_key" {
description = "Amazon KMS Key created to encrypt AWS GuardDuty's S3 Bucket."
value = aws_kms_key.guardduty_key
}
output "guardduty_kms_replica_key" {
description = "Amazon KMS Key created to encrypt AWS GuardDuty's S3 Replica Bucket."
value = aws_kms_key.replica_key
}