2026-06-14 10:30:02 +02:00
|
|
|
---
|
|
|
|
|
- name: Verify
|
|
|
|
|
hosts: all
|
2026-06-14 10:36:40 +02:00
|
|
|
gather_facts: false
|
2026-06-14 10:30:02 +02:00
|
|
|
tasks:
|
2026-06-14 10:36:40 +02:00
|
|
|
- name: Role variables resolved
|
2026-06-14 10:30:02 +02:00
|
|
|
ansible.builtin.assert:
|
2026-06-14 10:36:40 +02:00
|
|
|
that:
|
|
|
|
|
- public_dns__domain == "example.test"
|
|
|
|
|
- public_dns__apply | bool == false
|
|
|
|
|
msg: "public_dns defaults/vars did not resolve as expected"
|
2026-06-14 10:30:02 +02:00
|
|
|
tags: [verify]
|