oo-config-zaio.yml 571 B

12345678910111213141516171819
  1. #!/usr/bin/ansible-playbook
  2. ---
  3. - hosts: localhost
  4. gather_facts: no
  5. connection: local
  6. become: no
  7. vars:
  8. g_server: http://localhost/zabbix/api_jsonrpc.php
  9. g_user: Admin
  10. g_password: zabbix
  11. g_zbx_scriptrunner_user: scriptrunner
  12. g_zbx_scriptrunner_bastion_host: specialhost.example.com
  13. roles:
  14. - role: os_zabbix
  15. ozb_server: "{{ g_server }}"
  16. ozb_user: "{{ g_user }}"
  17. ozb_password: "{{ g_password }}"
  18. ozb_scriptrunner_user: "{{ g_zbx_scriptrunner_user }}"
  19. ozb_scriptrunner_bastion_host: "{{ g_zbx_scriptrunner_bastion_host }}"