matrix-docker-ansible-deploy/roles/matrix-dynamic-dns/tasks/validate_config.yml

11 lines
404 B
YAML
Raw Normal View History

2020-10-13 23:18:38 +00:00
---
2020-11-08 01:34:16 +00:00
- name: Fail if required settings not defined in configuration blocks
2020-10-13 23:18:38 +00:00
fail:
msg: >-
You need to define a required configuration setting (`{{ item }}`).
2020-11-08 01:34:16 +00: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