TLS option for MSSQL credentials type (#1132)

* Update MicrosoftSql.node.ts

* Update MicrosoftSql.credentials.ts

* Update MicrosoftSql.node.ts

Add TLS encryption toggle to MSSQL credentials type and implement into the connection config object. This will help users connect to certain Azure MSSQL products and older MSSQL instances.
This commit is contained in:
bsanderrmg
2020-11-10 17:30:03 -05:00
committed by GitHub
parent 03a672300f
commit 10645c2ef5
2 changed files with 9 additions and 0 deletions

View File

@@ -44,5 +44,11 @@ export class MicrosoftSql implements ICredentialType {
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'TLS',
name: 'tls',
type: 'boolean' as NodePropertyTypes,
default: true,
},
];
}