11 lines
404 B
YAML
Raw Normal View History

2020-10-13 16:18:38 -07:00
---
2020-11-07 17:34:16 -08:00
- name: Fail if required settings not defined in configuration blocks
2020-10-13 16:18:38 -07:00
fail:
msg: >-
You need to define a required configuration setting (`{{ item }}`).
2020-11-07 17:34:16 -08:00
when: "'domain' not in configuration == '' or 'provider' not in configuration == '' or 'protocol' not in configuration == ''"
with_items: "{{ matrix_dynamic_dns_domain_configurations }}"
loop_control:
loop_var: configuration