31 lines
882 B
YAML
31 lines
882 B
YAML
---
|
|
- name: Query existing address
|
|
ansible.builtin.uri:
|
|
url: "{{ endpoint }}/ipam/ip-addresses?virtual_machine_id={{ id }}"
|
|
client_cert: "{{ cert }}"
|
|
client_key: "{{ key }}"
|
|
method: GET
|
|
return_content: yes
|
|
headers:
|
|
Accept: application/json
|
|
Authorization: "Token {{ token }}"
|
|
register: nb_ip_1
|
|
delegate_to: localhost
|
|
|
|
- name: Query available address
|
|
ansible.builtin.uri:
|
|
url: "{{ endpoint }}/ipam/prefixes/{{ prefix_id }}/available-ips/?limit=1"
|
|
client_cert: "{{ cert }}"
|
|
client_key: "{{ key }}"
|
|
method: GET
|
|
return_content: yes
|
|
headers:
|
|
Accept: application/json
|
|
Authorization: "Token {{ token }}"
|
|
register: nb_ip_2
|
|
delegate_to: localhost
|
|
when: "nb_ip_1.json.count|int == 0 or (nb_ip_1.json.results[0].status is defined and nb_ip_1.json.results[0].status.value != 'active')"
|
|
tags:
|
|
- init_dp
|
|
|