ansible-role-elasticsearch/tasks/elasticsearch-template.yml

31 lines
884 B
YAML
Raw Normal View History

2017-08-17 12:25:25 +01:00
---
2018-02-04 07:09:23 +00:00
- name: ensure templates dir is created
file:
path: "{{ es_conf_dir }}/templates"
2018-02-04 07:09:23 +00:00
state: directory
owner: root
2018-02-04 07:09:23 +00:00
group: "{{ es_group }}"
mode: 2750
2017-08-17 12:25:25 +01:00
- name: Copy templates to elasticsearch
copy: src={{ item }} dest={{ es_conf_dir }}/templates owner=root group={{ es_group }} mode=0660
2017-08-17 12:25:25 +01:00
register: load_templates
with_fileglob:
- "{{ es_templates_fileglob | default('') }}"
2017-01-04 16:39:00 +00:00
- name: Install templates
2016-07-24 19:18:04 +01:00
uri:
url: "{{ es_api_uri }}/_template/{{item | filename}}"
2016-07-24 19:18:04 +01:00
method: PUT
status_code: 200
user: "{{es_api_basic_auth_username | default(omit)}}"
password: "{{es_api_basic_auth_password | default(omit)}}"
force_basic_auth: yes
2016-07-24 19:18:04 +01:00
body_format: json
body: "{{ lookup('file', item) }}"
when: load_templates.changed and es_start_service
with_fileglob:
- "{{ es_templates_fileglob | default('') }}"
2017-08-17 10:05:32 +01:00
run_once: True