Skip to content

Commit

Permalink
updated jdbc url and removed () (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
shanice-skylight authored Oct 24, 2024
1 parent 9f37b0f commit bf02eb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/aws/implementation/modules/rds/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[]{}"
}
2 changes: 1 addition & 1 deletion terraform/aws/implementation/modules/rds/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit bf02eb8

Please sign in to comment.