Skip to content

Commit

Permalink
fix: mandate numbers in random generated admin password (#301)
Browse files Browse the repository at this point in the history
* fix: mandate numbers in admin pass
  • Loading branch information
alex-reiff authored Sep 27, 2024
1 parent f33504f commit 1866631
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions solutions/standard/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ resource "random_password" "admin_password" {
length = 32
special = true
override_special = "-_"
min_numeric = 1
}

# create a service authorization between Secrets Manager and the target service (Elastic Search)
Expand Down

0 comments on commit 1866631

Please sign in to comment.