File tree 3 files changed +11
-0
lines changed
modules/core_project_factory
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,7 @@ determining that location is as follows:
156
156
| api\_ s\_ account\_ fmt | API service account email formatted for terraform use |
157
157
| budget\_ name | The name of the budget if created |
158
158
| domain | The organization's domain |
159
+ | enabled\_ api\_ identities | Enabled API identities in the project |
159
160
| enabled\_ apis | Enabled APIs in the project |
160
161
| group\_ email | The email of the G Suite group with group\_ name |
161
162
| project\_ bucket\_ self\_ link | Project's bucket selfLink |
Original file line number Diff line number Diff line change @@ -90,3 +90,8 @@ output "enabled_apis" {
90
90
description = " Enabled APIs in the project"
91
91
value = module. project_services . enabled_apis
92
92
}
93
+
94
+ output "enabled_api_identities" {
95
+ description = " Enabled API identities in the project"
96
+ value = module. project_services . enabled_api_identities
97
+ }
Original file line number Diff line number Diff line change @@ -86,6 +86,11 @@ output "enabled_apis" {
86
86
value = module. project-factory . enabled_apis
87
87
}
88
88
89
+ output "enabled_api_identities" {
90
+ description = " Enabled API identities in the project"
91
+ value = module. project-factory . enabled_api_identities
92
+ }
93
+
89
94
output "budget_name" {
90
95
value = module. budget . name
91
96
description = " The name of the budget if created"
You can’t perform that action at this time.
0 commit comments