From 93c3474de3ce9b658dbe3692db1a823a8e955705 Mon Sep 17 00:00:00 2001 From: Sander Philipse Date: Wed, 18 Sep 2024 16:46:28 +0200 Subject: [PATCH] fix typing error --- x-pack/plugins/cloud/common/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/cloud/common/types.ts b/x-pack/plugins/cloud/common/types.ts index f6615a0014406..0f72caf515058 100644 --- a/x-pack/plugins/cloud/common/types.ts +++ b/x-pack/plugins/cloud/common/types.ts @@ -8,5 +8,5 @@ export type OnBoardingDefaultSolution = 'es' | 'oblt' | 'security'; export interface ElasticsearchConfigType { - elasticsearch_url: string; + elasticsearch_url?: string; }