From f3690d18060ae689d992c70fd8af3f4ea78de7cb Mon Sep 17 00:00:00 2001 From: Sergey Smolnikov Date: Thu, 20 Feb 2025 11:00:26 +0100 Subject: [PATCH] Corrected description of the option credentials --- public-site/docs/radix-config/index.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/public-site/docs/radix-config/index.md b/public-site/docs/radix-config/index.md index 3110c21..9ede8c8 100644 --- a/public-site/docs/radix-config/index.md +++ b/public-site/docs/radix-config/index.md @@ -1134,10 +1134,9 @@ oauth2: - `insecureSkipVerifyNonce` Optional. Default **false**. Skip verifying the OIDC ID Token's nonce claim. Should only be enabled with OIDC providers that does not support the nonce claim. - `loginUrl` Optional - The authorization URL. Required if `skipDiscovery` is set to **true**. - `redeemUrl` Optional - The URL used to redeem authorization code and refresh token. Required if `skipDiscovery` is set to **true**. -- `credentials` - The type of the authentication. Supported values: - - `secret` (using a client secret) - - `azureWorkloadIdentity`- [Azure Workload Identity](/guides/authentication/#authentication-with-azure-workload-identity) to authenticate the OAuth2 proxy using the Entra ID application registration with its `ClientID` set to the `oauth2.clientId` field. - The field `credentials` is optional, with default value `secret`. If omitted or set to `secret` a Client Secret is required, see details in the [Authentication with Client Secret](/guides/authentication/#authentication-with-client-secret). +- `credentials` Optional. Default **secret**. The type of the authentication. When the value of the `credentials` omitted or set to `secret` a Client Secret component or job secrets is required to be set. See details in the [Authentication with Client Secret](/guides/authentication/#authentication-with-client-secret). Supported values: + - `secret` - using a client secret to authenticate the OAuth2 proxy. + - `azureWorkloadIdentity`- [Azure Workload Identity](/guides/authentication/#authentication-with-azure-workload-identity) to authenticate the OAuth2 proxy using the Microsoft Entra ID application registration with its `ClientID` set to the `oauth2.clientId` field. - `sessionStoreType` Optional. Default **cookie**. Allowed values: **cookie**, **redis** - Defines where session data shall be stored. - `redisStore` Redis session store configuration if `sessionStoreType` is **redis**. - `connectionUrl` Connection URL of redis server.