2017-08-17 12:25:25 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
|
|
- file: path=/etc/elasticsearch/templates state=directory owner={{ es_user }} group={{ es_group }}
|
|
|
|
|
|
|
|
|
|
- name: Copy templates to elasticsearch
|
|
|
|
|
copy: src={{ item }} dest=/etc/elasticsearch/templates owner={{ es_user }} group={{ es_group }}
|
|
|
|
|
register: load_templates
|
|
|
|
|
with_fileglob:
|
|
|
|
|
- "{{ es_templates_fileglob | default('') }}"
|
2017-01-04 16:39:00 +00:00
|
|
|
|
2016-07-24 19:18:04 +01:00
|
|
|
- name: Install templates without auth
|
|
|
|
|
uri:
|
2017-05-06 20:22:22 +01:00
|
|
|
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item | filename}}"
|
2016-07-24 19:18:04 +01:00
|
|
|
method: PUT
|
|
|
|
|
status_code: 200
|
|
|
|
|
body_format: json
|
2017-05-06 20:22:22 +01:00
|
|
|
body: "{{ lookup('file', item) }}"
|
2017-08-17 12:25:25 +01:00
|
|
|
when: load_templates.changed and es_start_service and not es_enable_xpack or not es_xpack_features is defined or "security" not in es_xpack_features
|
2017-05-06 20:22:22 +01:00
|
|
|
with_fileglob:
|
|
|
|
|
- "{{ es_templates_fileglob | default('') }}"
|
|
|
|
|
run_once: True
|
2016-07-24 19:18:04 +01:00
|
|
|
|
|
|
|
|
- name: Install templates with auth
|
|
|
|
|
uri:
|
2017-05-06 20:22:22 +01:00
|
|
|
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item | 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-05-06 20:22:22 +01:00
|
|
|
body: "{{ lookup('file', item) }}"
|
2017-08-17 12:25:25 +01:00
|
|
|
when: load_templates.changed and es_start_service and es_enable_xpack and es_xpack_features is defined and "security" in es_xpack_features
|
2017-05-06 20:22:22 +01:00
|
|
|
with_fileglob:
|
|
|
|
|
- "{{ es_templates_fileglob | default('') }}"
|
2017-08-17 10:05:32 +01:00
|
|
|
run_once: True
|