mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
Fixes N8N-8225
Adds SSL credentials to MySQL SQL Agent DataSource.
This commit is contained in:
parent
0da1114981
commit
8caef6ecd3
|
@ -12,6 +12,9 @@ export async function getMysqlDataSource(this: IExecuteFunctions): Promise<DataS
|
|||
password: credentials.password as string,
|
||||
database: credentials.database as string,
|
||||
ssl: {
|
||||
ca: credentials.caCertificate as string,
|
||||
cert: credentials.clientCertificate as string,
|
||||
key: credentials.clientPrivateKey as string,
|
||||
rejectUnauthorized: credentials.ssl as boolean,
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue