tmp
Some checks failed
/ Ansible Lint (push) Failing after 2m17s

This commit is contained in:
lilly 2026-02-26 21:13:07 +01:00
commit 4a7df9969d
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g
23 changed files with 746 additions and 0 deletions

View file

@ -0,0 +1,25 @@
# {{ ansible_managed }}
grafana.{{ monitoring_server_base_domain }} {
reverse_proxy localhost:3000
}
loki.{{ monitoring_server_base_domain }} {
basicauth {
{% for username, pw in (lookup("community.sops.sops", "monitoring_secrets.enc.yaml", extract='["caddy_basic_auth"]') | from_yaml).items() -%}
{{ username }} {{ pw | password_hash(hashtype="bcrypt") }}
{% endfor %}
}
reverse_proxy localhost:3100
}
mimir.{{ monitoring_server_base_domain }} {
basicauth {
{% for username, pw in (lookup("community.sops.sops", "monitoring_secrets.enc.yaml", extract='["caddy_basic_auth"]') | from_yaml).items() -%}
{{ username }} {{ pw | password_hash(hashtype="bcrypt") }}
{% endfor %}
}
reverse_proxy localhost:9009
}