ansible-roles/roles/elasticsearch/tasks/conf.yml

11 lines
248 B
YAML
Raw Normal View History

2021-12-01 19:13:34 +01:00
---
- name: Deploy configuration
2022-01-25 15:00:05 +01:00
template: src={{ item }}.j2 dest={{ es_root_dir }}/etc/{{ item }} group={{ es_user }} mode=660
2021-12-01 19:13:34 +01:00
loop:
- elasticsearch.yml
- log4j2.properties
2022-01-25 15:00:05 +01:00
- jvm.options
2021-12-01 19:13:34 +01:00
notify: restart elasticsearch
tags: es