Skip to content

Commit

Permalink
exclude special characters from password
Browse files Browse the repository at this point in the history
  • Loading branch information
roncitrus committed Jan 23, 2024
1 parent 325c02d commit 15679f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/environments/cdpt-chaps/secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ resource "aws_secretsmanager_secret" "db_password" {
}

resource "random_password" "password_long" {
length = 32
override_special = "!@#$%&*()-_=+[]{}<>:?@/ "
length = 32
special = false
}

resource "aws_secretsmanager_secret_version" "db_password" {
Expand Down

0 comments on commit 15679f7

Please sign in to comment.