boma/roles/public_dns/molecule/default/verify.yml
sjat e247af6e55 test(public_dns): Molecule scenario (apply disabled, no live API)
Converge runs in CI; the no-op apply=false scenario adds no local signal over
the pytest, and the test image is on an unreachable registry.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-14 10:36:40 +02:00

12 lines
327 B
YAML

---
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: Role variables resolved
ansible.builtin.assert:
that:
- public_dns__domain == "example.test"
- public_dns__apply | bool == false
msg: "public_dns defaults/vars did not resolve as expected"
tags: [verify]