Ansible/roles/elasticsearch/vars/main.yml

28 lines
486 B
YAML
Raw Normal View History

---
# configuration for elasticsearch.yml
#
# Defines the name of the cluster we are going to deploy to
cluster_name: 'Elastic-Cluster'
# Defines the name of the node
node_name: 'hostname'
node_master: true
node_data: true
path_data: '/var/lib/elasticsearch'
path_logs: '/var/lib/elasticsearch'
http_port: 9200
transport_host: localhost
transport_tcp_port: 9300
discovery_seed_hosts: 172.0.0.1
discovery_seed_hosts_def: "discovery.seed_hosts: [ {{ discovery_seed_hosts }} ]"