Add iOS redirect URI and JWT secret to Helm chart
Add backend.oidc.iosRedirectUri (default: timetracker://oauth/callback) and backend.jwt.secret to values.yaml and wire them into the backend deployment as OIDC_IOS_REDIRECT_URI and JWT_SECRET env vars. Update NOTES.txt to surface both values post-install.
This commit is contained in:
@@ -41,11 +41,21 @@ backend:
|
||||
oidc:
|
||||
issuerUrl: ""
|
||||
clientId: ""
|
||||
# Redirect URI registered in the IDP for the iOS native app.
|
||||
# Must match the custom URL scheme configured in the iOS app.
|
||||
iosRedirectUri: "timetracker://oauth/callback"
|
||||
|
||||
# Session configuration
|
||||
session:
|
||||
secret: "change-this-secret-in-production"
|
||||
|
||||
# JWT configuration (for iOS Bearer token auth)
|
||||
# jwt.secret is used to sign backend-issued JWTs for the iOS app.
|
||||
# If left empty it falls back to session.secret.
|
||||
# Set this to a dedicated secret in production.
|
||||
jwt:
|
||||
secret: ""
|
||||
|
||||
env:
|
||||
nodeEnv: production
|
||||
port: 3001
|
||||
|
||||
Reference in New Issue
Block a user