fix(Elasticsearch Node): Fix issue with self signed certificates (#9805)

This commit is contained in:
Jon 2024-06-19 13:20:30 +01:00 committed by GitHub
parent 65c5609ab5
commit 77bf16667b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,7 +51,6 @@ export class ElasticsearchApi implements ICredentialType {
username: '={{$credentials.username}}',
password: '={{$credentials.password}}',
},
skipSslCertificateValidation: '={{$credentials.ignoreSSLIssues}}',
},
};
@ -59,6 +58,7 @@ export class ElasticsearchApi implements ICredentialType {
request: {
baseURL: '={{$credentials.baseUrl}}',
url: '/_xpack?human=false',
skipSslCertificateValidation: '={{$credentials.ignoreSSLIssues}}',
},
};
}