Ansible/roles/elasticsearch/vars/main.yml
James Tombleson 642da849d6 Added Roles
Jenkins
Java
Adding Elastic support for clusters
2019-04-29 16:08:04 -07:00

28 lines
486 B
YAML

---
# 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 }} ]"