Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion modules/db_instance/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,13 @@ variable "username" {
}

variable "password" {
description = "Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file"
description = <<EOF
Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file.
The password provided will not be used if the variable create_random_password is set to true.
EOF
type = string
default = null
sensitive = true
}

variable "port" {
Expand Down