wazuh-ansible-4.7.2/roles/wazuh/wazuh-dashboard/tasks/Debian.yml
2024-02-29 14:50:41 -05:00

24 lines
494 B
YAML

---
- block:
- include_vars: debian.yml
- name: Add apt repository signing key
apt_key:
url: "{{ wazuh_repo.gpg }}"
state: present
- name: Debian systems | Add Wazuh dashboard repo
apt_repository:
repo: "{{ wazuh_repo.apt }}"
state: present
update_cache: yes
- name: Install Wazuh dashboard
apt:
name: "wazuh-dashboard={{ dashboard_version }}-*"
state: present
update_cache: yes
register: install
tags:
- install