Skip to content

Commit

Permalink
update password length and allowed special characters for password us…
Browse files Browse the repository at this point in the history
…ed by redis for opensearch proxy (#1800)
  • Loading branch information
markdboyd authored Nov 5, 2024
1 parent c48ab02 commit 6f28372
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
resource "random_password" "password" {
length = 25
length = 64
# see https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/auth.html#auth-overview
override_special = "!&#$^<>-"
}

resource "aws_elasticache_replication_group" "replication_group" {
Expand Down

0 comments on commit 6f28372

Please sign in to comment.