11 lines
268 B
YAML
11 lines
268 B
YAML
|
---
|
||
|
- name: Register interface ID
|
||
|
set_fact:
|
||
|
ifid: '{{ nb_interface_2.json.results[0].id }}'
|
||
|
when: "nb_interface_1.status|int == 400"
|
||
|
|
||
|
- name: Register interface ID
|
||
|
set_fact:
|
||
|
ifid: '{{ nb_interface_1.json.id }}'
|
||
|
when: "nb_interface_1.status|int == 201"
|