From d8892297c5266c0cbe792753364b391b42f9e517 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 --- 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 6a9de27f996f1..03b56df08e9b5 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, }), };