From bdaed849eab5fe90ee171e54007d40a726bd6cb1 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Wed, 11 Jan 2023 14:52:32 -0500 Subject: [PATCH 1/2] Update 0900_input_redis.conf.jinja --- salt/logstash/pipelines/config/so/0900_input_redis.conf.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/logstash/pipelines/config/so/0900_input_redis.conf.jinja b/salt/logstash/pipelines/config/so/0900_input_redis.conf.jinja index 956bbbaa0..b4251b81a 100644 --- a/salt/logstash/pipelines/config/so/0900_input_redis.conf.jinja +++ b/salt/logstash/pipelines/config/so/0900_input_redis.conf.jinja @@ -15,7 +15,7 @@ input { type => 'redis-input' threads => {{ THREADS }} batch_count => {{ BATCH }} - password => {{ REDIS_PASS }} + password => '{{ REDIS_PASS }}' } } {% endfor %} From 66924b63a784c250711da8d18ffe53bc271608be Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Wed, 11 Jan 2023 14:53:16 -0500 Subject: [PATCH 2/2] Update 9999_output_redis.conf.jinja --- salt/logstash/pipelines/config/so/9999_output_redis.conf.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/logstash/pipelines/config/so/9999_output_redis.conf.jinja b/salt/logstash/pipelines/config/so/9999_output_redis.conf.jinja index d16434148..6b8b8503f 100644 --- a/salt/logstash/pipelines/config/so/9999_output_redis.conf.jinja +++ b/salt/logstash/pipelines/config/so/9999_output_redis.conf.jinja @@ -16,6 +16,6 @@ output { congestion_threshold => 50000000 batch => true batch_events => {{ BATCH }} - password => {{ REDIS_PASS }} + password => '{{ REDIS_PASS }}' } }