You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
410 B
YAML

---
- name: Install kibana
become: yes
apt:
name: kibana
state: present
- name: Deploy kibana configuration file
become: yes
template:
src: kibana.yml.j2
dest: /etc/kibana/kibana.yml
owner: kibana
group: kibana
mode: u=r,g=,o=
notify: Restart kibana
- name: Enable kibana service
become: yes
systemd:
name: kibana.service
state: started
enabled: yes
...