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