Update install-elasticsearch.yml

adding config updates
This commit is contained in:
James Tombleson 2019-04-19 09:07:35 -07:00
parent 104d8a29d8
commit e38755d897
1 changed files with 20 additions and 0 deletions

View File

@ -31,6 +31,26 @@
apt:
name: elasticsearch
# This will work on a new install.
# If any changes are needed to the cluster name on an existing install add another function
- name: Config - cluster.name 'elastic-DMI01'
become: true
lineinfile:
path: /etc/elasticsearch/elasticsearch.yml
regex: '^cluster.name'
insertafter: '#cluster.name: my-application'
line: 'cluster.name: elastic-DMI01'
backup: yes
- name: Config - node.name
become: true
lineinfile:
path: /etc/elasticsearch/elasticsearch.yml
regex: '^node.name'
insertafter: '#node.name: node-1'
line: "node.name: {{ ansible_eno1.ipv4.address }}"
- name: Allow port 9200 though UFW
become: true
ufw: