File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -153,8 +153,11 @@ determining that location is as follows:
153
153
154
154
| Name | Description |
155
155
| ------| -------------|
156
+ | api\_ s\_ account | API service account email |
157
+ | api\_ s\_ account\_ fmt | API service account email formatted for terraform use |
156
158
| budget\_ name | The name of the budget if created |
157
159
| domain | The organization's domain |
160
+ | enabled\_ apis | Enabled APIs in the project |
158
161
| group\_ email | The email of the G Suite group with group_name |
159
162
| project\_ bucket\_ self\_ link | Project's bucket selfLink |
160
163
| project\_ bucket\_ url | Project's bucket url |
Original file line number Diff line number Diff line change @@ -71,6 +71,21 @@ output "project_bucket_url" {
71
71
description = " Project's bucket url"
72
72
}
73
73
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
+
74
89
output "budget_name" {
75
90
value = module. budget . name
76
91
description = " The name of the budget if created"
You can’t perform that action at this time.
0 commit comments