From e8c473ea6771372a2cb2ab48d398c0e36f3736e8 Mon Sep 17 00:00:00 2001 From: Antoine Cotten Date: Fri, 28 Jun 2019 23:28:46 +0200 Subject: [PATCH] Quote strings in Logstash pipeline config Closes #408 --- logstash/pipeline/logstash.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logstash/pipeline/logstash.conf b/logstash/pipeline/logstash.conf index a423889..14c76f8 100644 --- a/logstash/pipeline/logstash.conf +++ b/logstash/pipeline/logstash.conf @@ -9,7 +9,7 @@ input { output { elasticsearch { hosts => "elasticsearch:9200" - user => elastic - password => changeme + user => "elastic" + password => "changeme" } }