Skip to content

Commit 62c168d

Browse files
authoredFeb 22, 2021
feat: Expose service identity Service Account emails (#548)
1 parent 4275a8d commit 62c168d

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ determining that location is as follows:
156156
| api\_s\_account\_fmt | API service account email formatted for terraform use |
157157
| budget\_name | The name of the budget if created |
158158
| domain | The organization's domain |
159+
| enabled\_api\_identities | Enabled API identities in the project |
159160
| enabled\_apis | Enabled APIs in the project |
160161
| group\_email | The email of the G Suite group with group\_name |
161162
| project\_bucket\_self\_link | Project's bucket selfLink |

‎modules/core_project_factory/outputs.tf

+5
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,8 @@ output "enabled_apis" {
9090
description = "Enabled APIs in the project"
9191
value = module.project_services.enabled_apis
9292
}
93+
94+
output "enabled_api_identities" {
95+
description = "Enabled API identities in the project"
96+
value = module.project_services.enabled_api_identities
97+
}

‎outputs.tf

+5
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ output "enabled_apis" {
8686
value = module.project-factory.enabled_apis
8787
}
8888

89+
output "enabled_api_identities" {
90+
description = "Enabled API identities in the project"
91+
value = module.project-factory.enabled_api_identities
92+
}
93+
8994
output "budget_name" {
9095
value = module.budget.name
9196
description = "The name of the budget if created"

0 commit comments

Comments
 (0)
Please sign in to comment.