24 lines
494 B
YAML
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 }}-1"
|
|
state: present
|
|
update_cache: yes
|
|
register: install
|
|
|
|
tags:
|
|
- install |