wazuh-ansible-4.8.1/roles/opendistro/opendistro-kibana/tasks/security_actions.yml
2022-02-01 17:39:57 -03:00

14 lines
329 B
YAML

- block:
- name: Copy the certificates from local to the Kibana instance
copy:
src: "{{ local_certs_path }}/certs/{{ item }}"
dest: /usr/share/kibana
mode: 0644
with_items:
- "root-ca.pem"
- "{{ kibana_node_name }}_http.key"
- "{{ kibana_node_name }}_http.pem"
tags:
- security