fix: problem on the permissions of config file

This commit is contained in:
Adrien Waksberg 2024-02-16 11:21:24 +01:00
parent bf43df93b4
commit 45e7e2b509

View file

@ -29,13 +29,14 @@
name: name:
- kibana - kibana
tags: kibana tags: kibana
- name: Copy config file - name: Copy config file
ansible.builtin.copy: ansible.builtin.copy:
content: '{{ kibana_config | to_yaml }}' content: '{{ kibana_config | to_yaml }}'
dest: /etc/kibana/kibana.yml dest: /etc/kibana/kibana.yml
owner: root owner: root
group: root group: root
mode: 0644 mode: 0640
notify: Restart kibana notify: Restart kibana
tags: kibana tags: kibana