34 lines
959 B
YAML
34 lines
959 B
YAML
apiVersion: external-secrets.io/v1
|
|
kind: ExternalSecret
|
|
metadata:
|
|
name: authelia-secrets
|
|
namespace: authelia
|
|
spec:
|
|
refreshInterval: 1h
|
|
secretStoreRef:
|
|
kind: ClusterSecretStore
|
|
name: vault-backend
|
|
target:
|
|
name: authelia-secrets
|
|
creationPolicy: Owner
|
|
data:
|
|
- secretKey: jwt.token
|
|
remoteRef:
|
|
key: cluster-infrastructure/authelia
|
|
property: JWT_SECRET
|
|
- secretKey: session.encryption.key
|
|
remoteRef:
|
|
key: cluster-infrastructure/authelia
|
|
property: SESSION_SECRET
|
|
- secretKey: storage.encryption.key
|
|
remoteRef:
|
|
key: cluster-infrastructure/authelia
|
|
property: STORAGE_ENCRYPTION_KEY
|
|
- secretKey: identity_validation.reset_password.jwt.hmac.key
|
|
remoteRef:
|
|
key: cluster-infrastructure/authelia
|
|
property: JWT_SECRET
|
|
- secretKey: storage.postgres.password.txt
|
|
remoteRef:
|
|
key: databases/postgresql
|
|
property: PASSWORD |