forked from cloudposse/terraform-aws-vpc-flow-logs-s3-bucket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
34 lines (28 loc) · 894 Bytes
/
outputs.tf
File metadata and controls
34 lines (28 loc) · 894 Bytes
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 "bucket_domain_name" {
value = module.s3_log_storage_bucket.bucket_domain_name
description = "FQDN of bucket"
}
output "bucket_id" {
value = module.s3_log_storage_bucket.bucket_id
description = "Bucket Name (aka ID)"
}
output "bucket_arn" {
value = module.s3_log_storage_bucket.bucket_arn
description = "Bucket ARN"
}
output "bucket_prefix" {
value = module.s3_log_storage_bucket.prefix
description = "Bucket prefix configured for lifecycle rules"
}
output "flow_log_id" {
value = join("", aws_flow_log.default.*.id)
description = "Flow Log ID"
}
output "flow_log_arn" {
value = join("", aws_flow_log.default.*.arn)
description = "Flow Log ARN"
}
output "bucket_notifications_sqs_queue_arn" {
value = module.s3_log_storage_bucket.bucket_notifications_sqs_queue_arn
description = "Notifications SQS queue ARN"
}