1
0
Fork 0
mirror of https://gitlab.com/s3lph/ansible-collection-prometheus synced 2024-10-23 11:56:59 +02:00

Fix conflicting variable names

This commit is contained in:
s3lph 2021-11-06 05:49:39 +01:00
parent 400da5e280
commit 12ad0c0dc3

View file

@ -8,7 +8,7 @@ groups:
- name: {{ group }}
rules:
{% for job in jobs %}
{% if job.group | default(prometheus_job_default_group_name) == group %}
{% if job.group | default(prometheus_default_alert_group_name) == group %}
{{ job.alerts | to_nice_yaml(indent=2) | indent(2, first=true) }}