create_host.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. - name: 'Create a host object in zabbix'
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. roles:
  8. - os_zabbix
  9. post_tasks:
  10. - zbxapi:
  11. server: https://noc2.ops.rhcloud.com/zabbix/api_jsonrpc.php
  12. zbx_class: Template
  13. state: list
  14. params:
  15. host: ctr_test_kwoodson
  16. filter:
  17. host:
  18. - ctr_kwoodson_test_tmpl
  19. register: tmpl_results
  20. - debug: var=tmpl_results
  21. #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
  22. - name: 'Create a host object in zabbix'
  23. hosts: localhost
  24. connection: local
  25. become: no
  26. gather_facts: no
  27. roles:
  28. - os_zabbix
  29. post_tasks:
  30. - zbxapi:
  31. server: https://noc2.ops.rhcloud.com/zabbix/api_jsonrpc.php
  32. zbx_class: Host
  33. state: absent
  34. params:
  35. host: ctr_test_kwoodson
  36. interfaces:
  37. - type: 1
  38. main: 1
  39. useip: 1
  40. ip: 127.0.0.1
  41. dns: ""
  42. port: 10050
  43. groups:
  44. - groupid: 1
  45. templates: "{{ tmpl_results.results | oo_collect('templateid') | oo_build_zabbix_list_dict('templateid') }}"
  46. output: extend
  47. filter:
  48. host:
  49. - ctr_test_kwoodson
  50. register: host_results
  51. - debug: var=host_results