From 2a2e65f72b08dd5c5fd64e446e8008855e1b3f90 Mon Sep 17 00:00:00 2001 From: John Kerry Date: Thu, 30 May 2024 13:24:08 -0400 Subject: [PATCH] Using database special characters (#290) --- modules/database/main.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/database/main.tf b/modules/database/main.tf index d4562246..f9c1c356 100644 --- a/modules/database/main.tf +++ b/modules/database/main.tf @@ -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" {