Skip to content

Commit

Permalink
Merge pull request #1 from usertesting/feature/secure_password
Browse files Browse the repository at this point in the history
Increase length to 24 with special chars
  • Loading branch information
Dan Kelly authored Nov 16, 2020
2 parents 23fe3f1 + aa32306 commit 236508d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ locals {
resource "random_password" "master_password" {
count = var.create_cluster ? 1 : 0

length = 10
special = false
length = 24
special = true
}

resource "aws_db_subnet_group" "this" {
Expand Down

0 comments on commit 236508d

Please # to comment.