Skip to content

Commit

Permalink
Merge pull request #4670 from ministryofjustice/chaps-rds-restore
Browse files Browse the repository at this point in the history
exclude special characters from password
  • Loading branch information
roncitrus authored Jan 23, 2024
2 parents c6d4734 + 15679f7 commit aa02d0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion terraform/environments/cdpt-chaps/secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ resource "aws_secretsmanager_secret" "db_password" {
}

resource "random_password" "password_long" {
length = 32
length = 32
special = false
}

resource "aws_secretsmanager_secret_version" "db_password" {
Expand Down

0 comments on commit aa02d0a

Please sign in to comment.