Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. - name: Create a new host or update an existing host's info
  2. local_action:
  3. module: zabbix_host
  4. server_url: "http://{{inventory_hostname}}"
  5. login_user: Admin
  6. login_password: zabbix
  7. host_name: "{{item}}"
  8. host_groups: "Linux servers"
  9. link_templates: "Template OS Linux"
  10. status: enabled
  11. state: present
  12. inventory_mode: automatic
  13. interfaces:
  14. - type: 1
  15. main: 1
  16. dns: 1
  17. ip: ""
  18. dns: "{{item}}"
  19. port: 10050
  20. with_items: groups['dev']
  21.  
  22. line 38, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n - bcc\n- name: Create a new host or update an existing host's info\n ^ here\n"}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement