generated from appvia/terraform-aws-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
25 lines (20 loc) · 821 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
output "organization_id" {
description = "The ID of the organization provided by AWS"
value = aws_organizations_organization.organization.id
}
output "organization_arn" {
description = "The ARN of the organization provided by AWS"
value = aws_organizations_organization.organization.arn
}
output "master_account_id" {
description = "The ARN of the master account provided by AWS"
value = aws_organizations_organization.organization.master_account_id
}
output "master_account_email" {
description = "The email address of the master account provided by AWS"
value = aws_organizations_organization.organization.master_account_email
}
output "organizational_units" {
description = "The organizational units created in the organization"
value = local.all_ou_attributes
}