Skip to content

Commit bdf9a6d

Browse files
committed
refactor(examples/create-organizational-unit): adds outputs
1 parent 28166ea commit bdf9a6d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
output "aws_organizations_organizational_unit_accounts" {
2+
description = "List of child accounts for org_unit Organizational Unit."
3+
value = module.production_ou.aws_organizations_organizational_unit_accounts
4+
}
5+
6+
output "aws_organizations_organizational_unit_arn" {
7+
description = "ARN of the organizational unit."
8+
value = module.production_ou.aws_organizations_organizational_unit_arn
9+
}
10+
11+
output "aws_organizations_organizational_unit_id" {
12+
description = "Identifier of the organization unit."
13+
value = module.production_ou.aws_organizations_organizational_unit_id
14+
}

0 commit comments

Comments
 (0)