diff options
| author | Robert Günzler <r@gnzler.io> | 2025-09-07 17:32:13 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2025-09-07 17:42:42 +0200 |
| commit | 38be6c13f76e893cf47636257071b440dec0c5b2 (patch) | |
| tree | f7ded3235a7e3362cbd1ed3d91523968fe0faf90 /bundles/authelia/files/secret.yaml | |
initial commit
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to 'bundles/authelia/files/secret.yaml')
| -rw-r--r-- | bundles/authelia/files/secret.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bundles/authelia/files/secret.yaml b/bundles/authelia/files/secret.yaml new file mode 100644 index 0000000..aef62c7 --- /dev/null +++ b/bundles/authelia/files/secret.yaml @@ -0,0 +1,9 @@ +apiVersion: v1 +kind: Secret +metadata: + name: authelia +data: + AUTHELIA_IDENTITY_VALIDATION_RESET_PASSWORD_JWT_SECRET: ${repo.vault.password_for("authelia_jwt").b64encode().value} + AUTHELIA_SESSION_SECRET: ${repo.vault.password_for("authelia_session_sec").b64encode().value} + AUTHELIA_STORAGE_ENCRYPTION_KEY: ${repo.vault.password_for("authelia_storage_encryption_key").b64encode().value} + AUTHELIA_IDENTITY_PROVIDERS_OIDC_HMAC_SECRET: ${repo.vault.password_for("authelia_oidc_hmac").b64encode().value} |