Skip to content

Commit

Permalink
Using database special characters (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkerry authored May 30, 2024
1 parent 216167a commit 2a2e65f
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 @@ -30,8 +30,9 @@ resource "google_sql_database_instance" "tfe" {
}

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

resource "google_sql_database" "tfe" {
Expand Down

0 comments on commit 2a2e65f

Please sign in to comment.