feat: add password for twirre user

This commit is contained in:
Twirre Meulenbelt
2026-04-22 18:48:28 +02:00
parent d8f4307969
commit 6939f40a9f
4 changed files with 9 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
{% set app_vault_env = vars['vault_' + (bun_app.name | replace('-', '_')) + '_env'] | default({}) %}
{% set app_vault_env_var = 'vault_' + (bun_app.name | replace('-', '_')) + '_env' %}
{% set app_vault_env = lookup('vars', app_vault_env_var, default={}) %}
{% set app_non_vault_env_keys = bun_app.non_vault_env_keys | default([]) %}
{% set app_filtered_vault_env = app_vault_env | dict2items | rejectattr('key', 'in', app_non_vault_env_keys) | items2dict %}
{% for key, value in (bun_app.env | combine(app_filtered_vault_env)) | dictsort %}