instance-status/templates/checks.yml

15 lines
285 B
YAML
Raw Normal View History

2017-12-25 01:04:41 +00:00
---
# {{ ansible_managed }}
2017-12-25 01:04:41 +00:00
{% if instance_status_global_checks | length > 0 %}
# Global checks
{{ instance_status_global_checks | to_nice_yaml }}
{% endif %}
{% if instance_status_checks | length > 0 %}
# Instance checks
2017-12-25 01:04:41 +00:00
{{ instance_status_checks | to_nice_yaml }}
{% endif %}
2017-12-25 01:04:41 +00:00
...