indent yaml for config file (#630)

This commit is contained in:
Julien Mailleret 2019-11-21 11:32:20 +01:00 committed by GitHub
parent e204b5059a
commit e6dd15ef0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{% if es_config %} {% if es_config %}
{{ es_config | to_nice_yaml }} {{ es_config | to_nice_yaml(indent=2) }}
{% endif %} {% endif %}
{% if es_config['cluster.name'] is not defined %} {% if es_config['cluster.name'] is not defined %}

View file

@ -1 +1 @@
{{ es_role_mapping | to_nice_yaml }} {{ es_role_mapping | to_nice_yaml(indent=2) }}

View file

@ -1 +1 @@
{{ es_roles.file | to_nice_yaml }} {{ es_roles.file | to_nice_yaml(indent=2) }}