Skip to content

Commit

Permalink
Enable special characters in database password generation (#335)
Browse files Browse the repository at this point in the history
* Revert "Revert "enabling special characters in the postgresql password generation""

This reverts commit dfacae1.

* fmt
  • Loading branch information
jkerry authored May 31, 2024
1 parent dfacae1 commit 21961b7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/database/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
# SPDX-License-Identifier: MPL-2.0

resource "random_string" "postgresql_password" {
length = 128
special = false
length = 128
special = true
override_special = "!#$%&*()-_=+[]{}<>?"
}

resource "aws_security_group" "postgresql" {
Expand Down

0 comments on commit 21961b7

Please sign in to comment.