cfg/templates/frigate/frigate.env

10 lines
204 B
Bash

{% if frigate.env is defined -%}
{% for k, v in frigate.env -%}
{% if v is starting_with("-----BEGIN AGE") -%}
{{ k }}={{ v | decrypt }}
{% else %}
{{ k }}={{ v }}
{% endif -%}
{% endfor -%}
{% endif -%}