15 lines
376 B
YAML
15 lines
376 B
YAML
|
---
|
||
|
- name: Locate cluster hosts
|
||
|
ansible.builtin.uri:
|
||
|
url: "{{ endpoint }}/dcim/devices/?cluster_id={{ nb_vm.json.results[0].cluster.id }}"
|
||
|
client_cert: "{{ cert }}"
|
||
|
client_key: "{{ key }}"
|
||
|
method: GET
|
||
|
return_content: yes
|
||
|
headers:
|
||
|
Accept: application/json
|
||
|
Authorization: "Token {{ token }}"
|
||
|
register: nb_hosts
|
||
|
delegate_to: localhost
|
||
|
|