From d42a7b837d80e6ff5b31d92a02af99bacd77508a Mon Sep 17 00:00:00 2001 From: Jannes Heinrich Date: Wed, 12 Apr 2023 10:44:32 +0200 Subject: [PATCH] Added organiztion id to the outputs --- outputs.tf | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 9ae471c..8672ca5 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,3 +1,10 @@ +# Organization id +output "organization_id" { + value = data.aws_organizations_organization.this.id + description = "The id of the AWS organization." +} + + # Management account output "management_account_id" { value = local.management_account_id @@ -75,4 +82,4 @@ output "search_result_group_id_missing_key" { output "search_result" { value = local.search_result description = "The search result which can be refined by setting the input parameters of this module. The input parameters of this module only have an effect on this output." -} \ No newline at end of file +}