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

11 lines
256 B
YAML
Raw Normal View History

2020-10-13 23:18:38 +00:00
---
- name: Fail if required settings not defined
fail:
msg: >-
You need to define a required configuration setting (`{{ item }}`).
when: "vars[item] == ''"
with_items:
2020-10-17 04:31:07 +00:00
- "matrix_dynamic_dns_domain"
2020-10-13 23:18:38 +00:00
- "matrix_dynamic_dns_provider"