-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
40 lines (32 loc) · 1.38 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
################################################################################
# AWS Orgnization Outputs
################################################################################
output "organization_id" {
description = "Identifier of the organization"
value = aws_organizations_organization.organization.id
}
output "organization_arn" {
description = "ARN of the organization"
value = aws_organizations_organization.organization.arn
}
################################################################################
# AWS Organizational Units Outputs
################################################################################
output "organizational_units" {
description = "List of organization units which contain the root unit"
value = local.organizational_unit_outputs
}
################################################################################
# AWS Organization Accounts Outputs
################################################################################
output "accounts" {
description = "List of accounts"
value = local.account_outputs
}
################################################################################
# AWS Organization Policies Outputs
################################################################################
output "policies" {
description = "List of policies"
value = local.policies_outputs
}