forked from cloudposse/terraform-aws-cloudtrail
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
29 lines (24 loc) · 839 Bytes
/
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
output "cloudtrail_id" {
value = module.cloudtrail.cloudtrail_id
description = "The name of the trail"
}
output "cloudtrail_home_region" {
value = module.cloudtrail.cloudtrail_home_region
description = "The region in which the trail was created"
}
output "cloudtrail_arn" {
value = module.cloudtrail.cloudtrail_arn
description = "The Amazon Resource Name of the trail"
}
output "cloudtrail_bucket_domain_name" {
value = module.cloudtrail_s3_bucket.bucket_domain_name
description = "FQDN of the CloudTral S3 bucket"
}
output "cloudtrail_bucket_id" {
value = module.cloudtrail_s3_bucket.bucket_id
description = "Name of the CloudTral S3 bucket"
}
output "cloudtrail_bucket_arn" {
value = module.cloudtrail_s3_bucket.bucket_arn
description = "ARN of the CloudTral S3 bucket"
}