zabbix.yml 921 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. - name: 'Install Zabbix agent'
  2. apt:
  3. pkg: '{{ item }}'
  4. state: 'installed'
  5. update_cache: 'yes'
  6. with_items:
  7. - 'zabbix-agent'
  8. - name: 'Install Zabbix agent config file'
  9. template:
  10. src: 'zabbix/agent.conf.j2'
  11. dest: '/etc/zabbix/zabbix_agentd.conf'
  12. owner: 'root'
  13. group: 'root'
  14. mode: '0600'
  15. notify:
  16. - 'Restart zabbix agent'
  17. - name: 'Create zabbix plugins configuration directory'
  18. file:
  19. path: '/etc/zabbix/zabbix_plugins.conf.d'
  20. owner: 'root'
  21. group: 'root'
  22. mode: '0755'
  23. state: 'directory'
  24. when: zabbix_plugins_config
  25. - name: 'Install zabbix plugins configuration (ssl, web availability)'
  26. template:
  27. src: 'zabbix/plugins/{{ item }}.j2'
  28. dest: '/etc/zabbix/zabbix_plugins.conf.d/{{ item }}.yml'
  29. owner: 'root'
  30. group: 'root'
  31. mode: '0644'
  32. with_items:
  33. - 'ssl-discovery'
  34. - 'web-availability-discovery'
  35. when: zabbix_plugins_config