feat(Microsoft SQL Node): Add support for self signed certificates (#5160)

This commit is contained in:
Jon
2023-03-09 10:05:03 +00:00
committed by GitHub
parent 5b9c521d04
commit 971d5ae8f5
2 changed files with 10 additions and 0 deletions

View File

@@ -235,6 +235,8 @@ export class MicrosoftSql implements INodeType {
options: {
encrypt: credentials.tls as boolean,
enableArithAbort: false,
tdsVersion: credentials.tdsVersion as string,
trustServerCertificate: credentials.allowUnauthorizedCerts as boolean,
},
};
const pool = new mssql.ConnectionPool(config);
@@ -269,6 +271,7 @@ export class MicrosoftSql implements INodeType {
encrypt: credentials.tls as boolean,
enableArithAbort: false,
tdsVersion: credentials.tdsVersion as string,
trustServerCertificate: credentials.allowUnauthorizedCerts as boolean,
},
};