
* first ansible skeleton * first commit of ansible installation of vulnwhisperer outside docker * first ansible skeleton * first commit of ansible installation of vulnwhisperer outside docker * refactor the ansible role a bit * update readme, add fail validation step to provision.yml and fix typo when calling a logging funciton
42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
---
|
|
|
|
- name: ensure templates dir is created
|
|
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('') }}"
|
|
|
|
- name: Install templates without auth
|
|
uri:
|
|
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item | filename}}"
|
|
method: PUT
|
|
status_code: 200
|
|
body_format: json
|
|
body: "{{ lookup('file', item) }}"
|
|
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
|
|
with_fileglob:
|
|
- "{{ es_templates_fileglob | default('') }}"
|
|
run_once: True
|
|
|
|
- name: Install templates with auth
|
|
uri:
|
|
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item | filename}}"
|
|
method: PUT
|
|
status_code: 200
|
|
user: "{{es_api_basic_auth_username}}"
|
|
password: "{{es_api_basic_auth_password}}"
|
|
force_basic_auth: yes
|
|
body_format: json
|
|
body: "{{ lookup('file', item) }}"
|
|
when: load_templates.changed and es_start_service and es_enable_xpack and es_xpack_features is defined and "security" in es_xpack_features
|
|
with_fileglob:
|
|
- "{{ es_templates_fileglob | default('') }}"
|
|
run_once: True
|