Skip to content

Commit

Permalink
Document that user password can be hashed
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxu committed Jan 17, 2023
1 parent bc7539e commit c19ca2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redshift/resource_redshift_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Amazon Redshift user accounts can only be created and dropped by a database supe
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Description: "Sets the user's password. Users can change their own passwords, unless the password is disabled. To disable password, omit this parameter or set it to `null`.",
Description: "Sets the user's password. Users can change their own passwords, unless the password is disabled. To disable password, omit this parameter or set it to `null`. Can also be a hashed password rather than the plaintext password. Please refer to the Redshift [CREATE USER documentation](https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_USER.html) for information on creating a password hash.",
},
userValidUntilAttr: {
Type: schema.TypeString,
Expand Down

0 comments on commit c19ca2b

Please sign in to comment.