File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ module "pg" {
182
182
183
183
| Name | Description |
184
184
| ------| -------------|
185
+ | additional\_ user\_ passwords\_ map | Map of auto generated passwords for the additional users |
185
186
| additional\_ users | List of maps of additional users and passwords |
186
187
| apphub\_ service\_ uri | Service URI in CAIS style to be used by Apphub. |
187
188
| dns\_ name | DNS name of the instance endpoint |
Original file line number Diff line number Diff line change @@ -115,6 +115,12 @@ output "additional_users" {
115
115
sensitive = true
116
116
}
117
117
118
+ output "additional_user_passwords_map" {
119
+ description = " Map of auto generated passwords for the additional users"
120
+ value = { for u in google_sql_user . additional_users : u . name => u . password }
121
+ sensitive = true
122
+ }
123
+
118
124
output "iam_users" {
119
125
description = " The list of the IAM users with access to the CloudSQL instance"
120
126
value = var. iam_users
You can’t perform that action at this time.
0 commit comments