Skip to content

Commit

Permalink
DPR2-894: Add JDBC_DRIVER_CLASS_NAME to glue data connection for oper…
Browse files Browse the repository at this point in the history
…ational datastore. (#6753)
  • Loading branch information
tom-ogle-moj authored Jun 26, 2024
1 parent 6be07e8 commit 5a8b55b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ resource "aws_glue_connection" "glue_operational_datastore_connection" {

connection_properties = {
# This will be replaced by the details for the real Operational Data Store
JDBC_CONNECTION_URL = "jdbc:postgresql://dpr2-834-instance-1.cja8lnnvvipo.eu-west-2.rds.amazonaws.com:5432/postgres"
SECRET_ID = data.aws_secretsmanager_secret.operational_datastore[0].name
JDBC_CONNECTION_URL = "jdbc:postgresql://dpr2-834-instance-1.cja8lnnvvipo.eu-west-2.rds.amazonaws.com:5432/postgres"
JDBC_DRIVER_CLASS_NAME = "org.postgresql.Driver"
SECRET_ID = data.aws_secretsmanager_secret.operational_datastore[0].name
}

physical_connection_requirements {
Expand Down

0 comments on commit 5a8b55b

Please sign in to comment.