improvement(db): enforce SSL everywhere where a DB connection is established (#1522)

* improvement(db): enforce SSL everywhere where a DB connection is established

* remove extraneous comment
This commit is contained in:
Waleed
2025-10-01 19:09:08 -07:00
committed by GitHub
parent 35d857ef2e
commit 980a6d8347
6 changed files with 6 additions and 6 deletions

View File

@@ -123,6 +123,7 @@ const postgresClient = postgres(CONNECTION_STRING, {
connect_timeout: 30,
max: 10,
onnotice: () => {},
ssl: 'require',
})
const db = drizzle(postgresClient)

View File

@@ -147,6 +147,7 @@ const postgresClient = postgres(CONNECTION_STRING, {
connect_timeout: 30,
max: 10,
onnotice: () => {},
ssl: 'require',
})
const db = drizzle(postgresClient)