fix: problem on the permissions of config file
This commit is contained in:
parent
bf43df93b4
commit
45e7e2b509
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue