-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
70 lines (56 loc) · 1.84 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
67
68
69
output "cloudtrail_arn" {
description = "The Amazon Resource Name of the trail."
value = module.cloudtrail.cloudtrail_arn
}
output "cloudtrail_id" {
description = "The name of the trail."
value = module.cloudtrail.cloudtrail_id
}
output "cloudtrail_s3_bucket_arn" {
description = "The ARN of the CloudTrail bucket. Will be of format arn:aws:s3:::bucketname."
value = module.cloudtrail.s3_bucket_arn
}
output "cloudtrail_s3_bucket_id" {
description = "The name of the CloudTrail bucket."
value = module.cloudtrail.s3_bucket_id
}
output "cloudtrail_sns_arn" {
description = "The ARN of the CloudTrail SNS topic,"
value = module.cloudtrail.sns_arn
}
output "config_bucket_arn" {
description = "The bucket ARN that config writes output to."
value = module.config.bucket_arn
}
output "config_bucket_id" {
description = "The bucket name that config writes output to."
value = module.config.bucket
}
output "config_delivery_channel_id" {
description = "The name of the config delivery channel."
value = module.config.delivery_channel_id
}
output "config_recorder_id" {
description = "Name of the config recorder."
value = module.config.recorder_id
}
output "config_rule_arns" {
description = "The ARNs of the config rules."
value = module.config.rule_arns
}
output "config_rule_ids" {
description = "The IDs of the config rules."
value = module.config.rule_ids
}
output "config_topic_arn" {
description = "The ARN of the SNS topic AWS Config writes events to."
value = module.config.topic_arn
}
output "log_bucket_arn" {
description = "The ARN of the Log bucket. Will be of format arn:aws:s3:::bucketname."
value = module.log_bucket.arn
}
output "log_bucket_id" {
description = "The name of the Log bucket."
value = module.log_bucket.id
}