ansible-role-elasticsearch/handlers/elasticsearch-templates.yml

29 lines
972 B
YAML
Raw Normal View History

---
- name: Get template files
find: paths="/etc/elasticsearch/templates" patterns="*.json"
register: templates
2016-07-24 19:18:04 +01:00
- name: Install templates without auth
uri:
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item.path | filename}}"
2016-07-24 19:18:04 +01:00
method: PUT
status_code: 200
body_format: json
2017-01-03 16:05:11 +00:00
body: "{{ lookup('file', item.path) }}"
2016-07-24 19:18:04 +01:00
when: not es_enable_xpack or not es_xpack_features is defined or not '"shield" in es_xpack_features'
with_items: "{{ templates.files }}"
2016-07-24 19:18:04 +01:00
- name: Install templates with auth
uri:
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item.path | filename}}"
2016-07-24 19:18:04 +01:00
method: PUT
status_code: 200
user: "{{es_api_basic_auth_username}}"
password: "{{es_api_basic_auth_password}}"
force_basic_auth: yes
body_format: json
2017-01-03 16:05:11 +00:00
body: "{{ lookup('file', item.path) }}"
2016-07-24 19:18:04 +01:00
when: es_enable_xpack and es_xpack_features is defined and '"shield" in es_xpack_features'
with_items: "{{ templates.files }}"