mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-12 00:03:17 +02:00
15 lines
406 B
Django/Jinja
15 lines
406 B
Django/Jinja
cluster.name: {{ es_cluster_name }}
|
|
node.name: {{ es_node_name }}
|
|
path.data: {{ es_root_dir }}/data
|
|
path.logs: {{ es_root_dir }}/logs
|
|
network.host: 0.0.0.0
|
|
http.port: {{ es_port }}
|
|
path.repo: [ {{ es_root_dir }}/backup ]
|
|
action.auto_create_index: false
|
|
{% if es_version is version('7','>=') %}
|
|
discovery.type: single-node
|
|
{% endif %}
|
|
|
|
xpack.security.enabled: false
|
|
xpack.security.enrollment.enabled: false
|