Skip to content

Commit

Permalink
Merge pull request #4 from usertesting/ensure-rds-password-is-valid
Browse files Browse the repository at this point in the history
Ensure no disallowed special characters in pass
  • Loading branch information
cdimartino authored Feb 22, 2021
2 parents 1b538f0 + 14b9184 commit e646e99
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ resource "random_password" "master_password" {

length = 24
special = true
override_special = "!#$%&*()-_=+[]{}<>:?" # Must not contain any of `/'"@` as per AWS RDS password rules
}

data "aws_secretsmanager_secret_version" "stored_db_creds" {
Expand Down

0 comments on commit e646e99

Please # to comment.