Add .env.sample for OIDC configuration
This commit is contained in:
9
komodo/automate/termix/.env.sample
Normal file
9
komodo/automate/termix/.env.sample
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
OIDC_CLIENT_ID=your_oidc_client_id
|
||||||
|
OIDC_CLIENT_SECRET=your_oidc_client_secret
|
||||||
|
OIDC_ISSUER_URL=https://your-oidc-provider.com/application/o/termix/ # The base URL of your OIDC provider for this application. This is used to discover the authorization, token, and userinfo endpoints. It should end with a slash.
|
||||||
|
OIDC_AUTHORIZATION_URL=https://your-oidc-provider.com/application/o/authorize
|
||||||
|
OIDC_TOKEN_URL=https://your-oidc-provider.com/application/o/token
|
||||||
|
OIDC_USERINFO_URL=https://your-oidc-provider.com/application/o/userinfo
|
||||||
|
OIDC_IDENTIFIER_PATH=sub # The path in the OIDC userinfo response that contains the unique user identifier (default is 'sub')
|
||||||
|
OIDC_NAME_PATH=name # The path in the OIDC userinfo response that contains the user's display name (default is 'name')
|
||||||
|
OIDC_SCOPES=openid profile email
|
||||||
Reference in New Issue
Block a user