Added Postgres SSL Support (#7887)

* [Added] Postgres SSL Support

* [Added]Postgres SSL Support

* [Added] Postgres SSL Support
This commit is contained in:
David Karrick
2019-09-07 18:27:51 +01:00
committed by Barış Soner Uşaklı
parent 2d24153933
commit 9b4ae4c04a
3 changed files with 7 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ connection.getConnectionOptions = function (postgres) {
user: postgres.username,
password: postgres.password,
database: postgres.database,
ssl: postgres.ssl,
};
return _.merge(connOptions, postgres.options || {});