Advertisement
Guest User

infoblox

a guest
Sep 10th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. ---
  2. - hosts: infoblox
  3. connection: local
  4.  
  5.  
  6. tasks:
  7. - include_csv: src=infblox.csv
  8. - name: configure an ipv4 host record
  9. nios_host_record:
  10. name: "{{ item.name }}.puretec.purestorage.com"
  11. ipv4:
  12. - address: "{{ item.address }}"
  13. state: present
  14. provider:
  15. host: 10.21.93.16
  16. username: "{{ your username here }}"
  17. password: "{{ your password here }}"
  18. wapi_version: 2.5
  19. view: INTERNAL
  20. connection: local
  21. with_items: "{{ infblox }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement