From bf02eb8b558bdbefaa2599bb65de8b34350f96d7 Mon Sep 17 00:00:00 2001 From: shanice-skylight <150187231+shanice-skylight@users.noreply.github.com> Date: Thu, 24 Oct 2024 15:37:39 -0400 Subject: [PATCH] updated jdbc url and removed () (#100) --- terraform/aws/implementation/modules/rds/main.tf | 2 +- terraform/aws/implementation/modules/rds/output.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/aws/implementation/modules/rds/main.tf b/terraform/aws/implementation/modules/rds/main.tf index d1f5f4ff..4d6ffc85 100644 --- a/terraform/aws/implementation/modules/rds/main.tf +++ b/terraform/aws/implementation/modules/rds/main.tf @@ -75,5 +75,5 @@ resource "random_password" "setup_rds_password" { length = 13 #update as needed # Character set that excludes problematic characters like quotes, backslashes, etc. - override_special = "()[]{}" + override_special = "[]{}" } diff --git a/terraform/aws/implementation/modules/rds/output.tf b/terraform/aws/implementation/modules/rds/output.tf index 9a20117c..8f4359fc 100644 --- a/terraform/aws/implementation/modules/rds/output.tf +++ b/terraform/aws/implementation/modules/rds/output.tf @@ -8,7 +8,7 @@ output "tefca_db_connection_string" { } output "tefca_jdbc_db_url" { - value = "jdbc:postgres://${aws_db_instance.tefca-viewer-db.endpoint}/${aws_db_instance.tefca-viewer-db.db_name}" + value = "jdbc:postgresql://${aws_db_instance.tefca-viewer-db.endpoint}/${aws_db_instance.tefca-viewer-db.db_name}" sensitive = true }