From 92f5da577ff70040a06c32c0ef7427bddbaf961b Mon Sep 17 00:00:00 2001 From: Yuliia Naumenko Date: Wed, 13 Nov 2024 12:53:26 -0800 Subject: [PATCH] [Data Usage] Excludes ca setting from TLS config for AutoOps API request (#200073) This PR is a result of the discussion we had about certificates check performed between Kibana and AutoOps API (cherry picked from commit c35b389f114ba305cd2aea0bd4f36893b2b18063) --- x-pack/plugins/data_usage/server/services/autoops_api.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/x-pack/plugins/data_usage/server/services/autoops_api.ts b/x-pack/plugins/data_usage/server/services/autoops_api.ts index 6a9de27f996f..03b56df08e9b 100644 --- a/x-pack/plugins/data_usage/server/services/autoops_api.ts +++ b/x-pack/plugins/data_usage/server/services/autoops_api.ts @@ -63,7 +63,6 @@ export class AutoOpsAPIService { rejectUnauthorized: tlsConfig.rejectUnauthorized, cert: tlsConfig.certificate, key: tlsConfig.key, - ca: tlsConfig.certificateAuthorities, }), };