Ansible roles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
362 B

cluster.name: {{ es_cluster_name }}
network.host: 0.0.0.0
http.port: {{ es_port }}
node.name: {{ es_node_name }}
path.data: {{ es_data_dir }}
path.logs: /var/log/elasticsearch
path.repo: [ {{ es_backup_dir }} ]
action.auto_create_index: false
{% if es_major_version is defined and es_major_version is version('7','>=') %}
discovery.type: single-node
{% endif %}