mirror of
https://github.com/luzifer-ansible/instance-status.git
synced 2024-11-09 22:20:04 +00:00
14 lines
285 B
YAML
14 lines
285 B
YAML
---
|
|
# {{ ansible_managed }}
|
|
|
|
{% 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
|
|
{{ instance_status_checks | to_nice_yaml }}
|
|
{% endif %}
|
|
|
|
...
|