allow logstash.ssl on so-eval

This commit is contained in:
Josh Patterson
2026-01-20 09:30:32 -05:00
parent a192455fae
commit 1234cbd04b
2 changed files with 3 additions and 2 deletions

View File

@@ -73,7 +73,8 @@
'so-eval': (
manager_states +
sensor_states +
elastic_stack_states | reject('equalto', 'logstash') | list
elastic_stack_states | reject('equalto', 'logstash') | list +
['logstash.ssl']
),
'so-heavynode': (
sensor_states +

View File

@@ -4,7 +4,7 @@
# Elastic License 2.0.
{% from 'allowed_states.map.jinja' import allowed_states %}
{% if sls.split('.')[0] in allowed_states %}
{% if sls in allowed_states or sls.split('.')[0] in allowed_states %}
{% from 'vars/globals.map.jinja' import GLOBALS %}
{% from 'elasticfleet/map.jinja' import ELASTICFLEETMERGED %}
{% from 'ca/map.jinja' import CA %}