Guest User

Untitled

a guest
Dec 22nd, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. - name: "Register hostname in Infoblox (Get next available IP)"
  2. uri:
  3. url: "{{infoblox_api_url }}/record:host?_return_fields=ipv4addrs"
  4. user: "{{ infoblox_username }}"
  5. password: "{{ infoblox_password }}"
  6. body: "{{ lookup('template', 'infoblox_next_available.json.j2') }}"
  7. force_basic_auth: yes
  8. return_content: yes
  9. validate_certs: no
  10. body_format: json
  11. status_code: 201
  12. method: POST
  13. register: infoblox_response
Add Comment
Please, Sign In to add comment