-
Notifications
You must be signed in to change notification settings - Fork 5
/
outputs.tf
42 lines (35 loc) · 948 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
30
31
32
33
34
35
36
37
38
39
40
41
42
### -------------------------
### S3 Buckets
### -------------------------
output "s3_bucket_arns" {
description = "S3 Bucket ARNs"
value = local.s3_bucket_arns
}
output "s3_bucket_names" {
description = "S3 Bucket Names"
value = local.s3_bucket_names
}
output "s3_bucket_region_arn_map" {
description = "Map of regions and S3 ARNs"
value = local.s3_bucket_region_arn_map
}
output "s3_bucket_region_name_map" {
description = "Map of regions and S3 names"
value = local.s3_bucket_region_name_map
}
output "cloudtrail-us-east-1" {
description = "Map of regions and S3 names"
value = module.kms-cloudtrail-us-east-1
}
output "region_enabled" {
value = local.region_enabled
}
output "region_filter" {
value = local.region_filter
}
output "region_list" {
value = local.region_list
}
output "account_current" {
value = data.aws_organizations_organization.current
}