create_maintenance.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. #ansible-playbook -e 'oo_desc=kwoodson test' -e 'oo_name=kwoodson test name' -e 'oo_start=1435715357' -e 'oo_stop=1435718985' -e 'oo_hostids=11549' create_maintenance.yml
  3. - name: 'Create a maintenace object in zabbix'
  4. hosts: localhost
  5. connection: local
  6. become: no
  7. gather_facts: no
  8. roles:
  9. - os_zabbix
  10. vars:
  11. oo_hostids: ''
  12. oo_groupids: ''
  13. post_tasks:
  14. - assert:
  15. that: oo_desc is defined
  16. - zbxapi:
  17. server: https://noc2.ops.rhcloud.com/zabbix/api_jsonrpc.php
  18. zbx_class: Maintenance
  19. state: present
  20. params:
  21. name: "{{ oo_name }}"
  22. description: "{{ oo_desc }}"
  23. active_since: "{{ oo_start }}"
  24. active_till: "{{ oo_stop }}"
  25. maintenance_type: "0"
  26. output: extend
  27. hostids: "{{ oo_hostids.split(',') | default([]) }}"
  28. #groupids: "{{ oo_groupids.split(',') | default([]) }}"
  29. timeperiods:
  30. - start_time: "{{ oo_start }}"
  31. period: "{{ oo_stop }}"
  32. selectTimeperiods: extend
  33. register: maintenance
  34. - debug: var=maintenance