ansible-infra/ansible_collections/debops/debops/playbooks/service/zabbix_agent.yml
Stefan Bethke 2aed20393f
Some checks failed
/ Ansible Lint (push) Failing after 5m45s
/ Ansible Lint (pull_request) Failing after 4m59s
Vendor Galaxy Roles and Collections
2026-02-06 22:07:16 +01:00

24 lines
793 B
YAML

---
# Copyright (C) 2021-2021 Julien Lecomte <julien@lecomte.at>
# Copyright (C) 2021-2021 DebOps <https://debops.org/>
# SPDX-License-Identifier: GPL-3.0-only
- name: Install and manage Zabbix agent
collections: [ 'debops.debops', 'debops.roles01',
'debops.roles02', 'debops.roles03' ]
hosts: [ 'debops_service_zabbix_agent' ]
become: True
environment: '{{ inventory__environment | d({})
| combine(inventory__group_environment | d({}))
| combine(inventory__host_environment | d({})) }}'
roles:
- role: ferm
tags: [ 'role::ferm', 'skip::ferm' ]
ferm__dependent_rules:
- '{{ zabbix_agent__ferm__dependent_rules }}'
- role: zabbix_agent
tags: [ 'role::zabbix_agent', 'skip::zabbix_agent' ]