Added support for providing an array with indices

This commit is contained in:
Jeffrey E 2018-05-03 16:29:17 +02:00 committed by GitHub
parent 96f3a87d95
commit da527ec19b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,13 @@ path.logs: {{ log_dir }}
path.repo: {{ es_path_repo }}
{% endif %}
{% if es_action_auto_create_index == true %}
action.auto_create_index: true
{% elif not es_action_auto_create_index %}
action.auto_create_index: false
{% else %}
action.auto_create_index: {{ es_action_auto_create_index }}
{% endif %}
{% if es_enable_xpack %}
{% if not "security" in es_xpack_features %}