Skip to content

Commit

Permalink
feat: Expose service identity Service Account emails (#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
bharathkkb authored Feb 22, 2021
1 parent 4275a8d commit 62c168d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ determining that location is as follows:
| api\_s\_account\_fmt | API service account email formatted for terraform use |
| budget\_name | The name of the budget if created |
| domain | The organization's domain |
| enabled\_api\_identities | Enabled API identities in the project |
| enabled\_apis | Enabled APIs in the project |
| group\_email | The email of the G Suite group with group\_name |
| project\_bucket\_self\_link | Project's bucket selfLink |
Expand Down
5 changes: 5 additions & 0 deletions modules/core_project_factory/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,8 @@ output "enabled_apis" {
description = "Enabled APIs in the project"
value = module.project_services.enabled_apis
}

output "enabled_api_identities" {
description = "Enabled API identities in the project"
value = module.project_services.enabled_api_identities
}
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ output "enabled_apis" {
value = module.project-factory.enabled_apis
}

output "enabled_api_identities" {
description = "Enabled API identities in the project"
value = module.project-factory.enabled_api_identities
}

output "budget_name" {
value = module.budget.name
description = "The name of the budget if created"
Expand Down

0 comments on commit 62c168d

Please sign in to comment.