You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: variables.tf
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -175,6 +175,19 @@ variable "password" {
175
175
sensitive=true
176
176
}
177
177
178
+
variable"password_wo" {
179
+
description="Write-Only password for the master DB user. Password will only be used when `manage_master_user_password` is not set to true and `password` is not set."
180
+
type=string
181
+
default=null
182
+
ephemeral=true
183
+
}
184
+
185
+
variable"password_wo_version" {
186
+
description="Used together with password_wo to trigger an update. Increment this value when an update to password_wo is required."
187
+
type=number
188
+
default=null
189
+
}
190
+
178
191
variable"manage_master_user_password" {
179
192
description="Set to true to allow RDS to manage the master user password in Secrets Manager"
0 commit comments