Skip to content

Commit

Permalink
chore: Add comment about md5 to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
frankfarrell authored Dec 17, 2018
1 parent 0482445 commit 717b6ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Creating an admin user who is in a group and who owns a new database, with a pas
resource "redshift_user" "testuser"{
"username" = "testusernew" # User name are not immutable.
# Terraform can't read passwords, so if the user changes their password it will not be picked up. One caveat is that when the user name is changed, the password is reset to this value
"password" = "Testpass123"
"password" = "Testpass123" # You can pass an md5 encryted password here by prefixing the hash with md5
"valid_until" = "2018-10-30" # See below for an example with 'password_disabled'
"connection_limit" = "4"
"createdb" = true
Expand Down

0 comments on commit 717b6ca

Please sign in to comment.