Skip to content

Commit abc507f

Browse files
feat: add apis related outputs to main module (#470)
these were added to core_project_factory but not re-exported by top level module
1 parent e223f77 commit abc507f

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,11 @@ determining that location is as follows:
153153

154154
| Name | Description |
155155
|------|-------------|
156+
| api\_s\_account | API service account email |
157+
| api\_s\_account\_fmt | API service account email formatted for terraform use |
156158
| budget\_name | The name of the budget if created |
157159
| domain | The organization's domain |
160+
| enabled\_apis | Enabled APIs in the project |
158161
| group\_email | The email of the G Suite group with group_name |
159162
| project\_bucket\_self\_link | Project's bucket selfLink |
160163
| project\_bucket\_url | Project's bucket url |

outputs.tf

+15
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,21 @@ output "project_bucket_url" {
7171
description = "Project's bucket url"
7272
}
7373

74+
output "api_s_account" {
75+
value = module.project-factory.api_s_account
76+
description = "API service account email"
77+
}
78+
79+
output "api_s_account_fmt" {
80+
value = module.project-factory.api_s_account_fmt
81+
description = "API service account email formatted for terraform use"
82+
}
83+
84+
output "enabled_apis" {
85+
description = "Enabled APIs in the project"
86+
value = module.project-factory.enabled_apis
87+
}
88+
7489
output "budget_name" {
7590
value = module.budget.name
7691
description = "The name of the budget if created"

0 commit comments

Comments
 (0)