Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions roles/kibana/tasks/kibana-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@

# -- Kibana web UI certificate (only when kibana_tls is enabled) --

- name: kibana-security | Create certificate directory
ansible.builtin.file:
path: /etc/kibana/certs
state: directory
owner: root
group: kibana
mode: "0750"

- name: kibana-security | Handle Kibana web UI certificates
when: kibana_tls | bool
block:
Expand Down
Loading