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

22 lines
461 B
YAML

---
- block:
- name: RedHat/CentOS/Fedora | Add Wazuh dashboard repo
yum_repository:
file: wazuh
name: wazuh_repo
description: Wazuh yum repository
baseurl: "{{ wazuh_repo.yum }}"
gpgkey: "{{ wazuh_repo.gpg }}"
gpgcheck: true
- name: Install Wazuh dashboard
package:
name: "wazuh-dashboard-{{ dashboard_version }}"
state: present
update_cache: yes
register: install
tags:
- install