diff options
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} |