-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eabd528
commit 2ef2d24
Showing
1 changed file
with
10 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,35 @@ | ||
output "project_name" { | ||
description = "Project Name" | ||
value = module.project.project_name | ||
value = module.simple-project.project_name | ||
} | ||
|
||
output "project_id" { | ||
description = "Project ID" | ||
value = module.project.project_id | ||
value = module.simple-project.project_id | ||
} | ||
|
||
output "service_account_display_name" { | ||
description = "Name of service account" | ||
value = module.project.service_account_display_name | ||
value = module.simple-project.service_account_display_name | ||
} | ||
|
||
output "service_account_email" { | ||
description = "Email for service account" | ||
value = module.project.service_account_email | ||
value = module.simple-project.service_account_email | ||
} | ||
|
||
output "enabled_apis" { | ||
description = "Active Google APIS" | ||
value = module.project.enabled_apis | ||
value = module.simple-project.enabled_apis | ||
} | ||
|
||
output "roles" { | ||
description = "Roles" | ||
value = module.projects_iam_bindings.roles | ||
value = module.simple-project.roles | ||
} | ||
|
||
output "activate_apis" { | ||
description = "Activate APIs" | ||
value = var.activate_apis | ||
value = var.activate_apis | ||
} | ||
|
||
output "org_id" { | ||
description = "Organization ID" | ||
value = var.org_id | ||
output "organization_id" { | ||
value = var.org_id | ||
} | ||
|
||
output "folder_id" { | ||
description = "Folder ID" | ||
value = var.folder_id | ||
value = var.folder_id | ||
} |