2023-12-18 11:34:30 +01:00
|
|
|
---
|
|
|
|
- name: Test variable env_proxy.host
|
|
|
|
ansible.builtin.assert:
|
|
|
|
that:
|
|
|
|
- env_proxy is defined
|
|
|
|
- env_proxy.host is defined
|
|
|
|
- env_proxy.host is string
|
|
|
|
fail_msg: "La variable n'existe pas ou est de mauvais type !"
|
2023-12-18 11:34:31 +01:00
|
|
|
- name: Test variable env_proxy.port
|
|
|
|
ansible.builtin.assert:
|
|
|
|
that:
|
|
|
|
- env_proxy.port is defined
|
|
|
|
- env_proxy.port is string or env_proxy.port is integer
|
|
|
|
fail_msg: "La variable n'existe pas ou est de mauvais type !"
|