Files
portfolio/professional-infra/zabbix-monitoring-incident-response/roles/zabbix_server/tasks/main.yml
T
Mateusz Suski 35e6b139fc
ci / validate (push) Failing after 1m8s
Initial CV-aligned infrastructure portfolio
Rework portfolio around Linux operations, Zabbix monitoring, migration validation, and ELK/Grafana log observability.

Add AAP-style LVM resize workflow, Zabbix server/proxy/agent automation assets, Linux/AIX monitoring templates, and updated validation CI.
2026-05-04 17:37:24 +00:00

26 lines
777 B
YAML

---
- name: Create Zabbix server config directory
ansible.builtin.file:
path: /etc/zabbix
state: directory
owner: root
group: root
mode: "0755"
- name: Render Zabbix server configuration example
ansible.builtin.template:
src: zabbix_server.conf.j2
dest: /etc/zabbix/zabbix_server.conf
owner: root
group: root
mode: "0644"
- name: Report Zabbix server maintenance settings
ansible.builtin.debug:
msg:
listen_port: "{{ zabbix_server_listen_port }}"
cache_size: "{{ zabbix_server_cache_size }}"
housekeeping_frequency: "{{ zabbix_server_housekeeping_frequency }}"
history_retention_days: "{{ zabbix_server_history_retention_days }}"
trend_retention_days: "{{ zabbix_server_trend_retention_days }}"