From 5bbd4ae703f12b20e1f308f430b65f9e30bfff21 Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Fri, 20 Mar 2020 14:00:34 +0900 Subject: ElasticSearchで認証ができるように (#6158) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/types.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/config') diff --git a/src/config/types.ts b/src/config/types.ts index 78ae025133..a33901bde6 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -27,9 +27,10 @@ export type Source = { elasticsearch: { host: string; port: number; - pass: string; - index?: string; ssl?: boolean; + user?: string; + pass?: string; + index?: string; }; proxy?: string; -- cgit v1.2.3-freya