Identity Provider Config Oidc Identity Provider Config Args
data class IdentityProviderConfigOidcIdentityProviderConfigArgs(val clientId: Output<String>, val groupsClaim: Output<String>? = null, val groupsPrefix: Output<String>? = null, val issuerUrl: Output<String>, val requiredClaims: Output<List<IdentityProviderConfigRequiredClaimArgs>>? = null, val usernameClaim: Output<String>? = null, val usernamePrefix: Output<String>? = null) : ConvertibleToJava<IdentityProviderConfigOidcIdentityProviderConfigArgs>
An object representing an OpenID Connect (OIDC) configuration.
Constructors
Link copied to clipboard
fun IdentityProviderConfigOidcIdentityProviderConfigArgs(clientId: Output<String>, groupsClaim: Output<String>? = null, groupsPrefix: Output<String>? = null, issuerUrl: Output<String>, requiredClaims: Output<List<IdentityProviderConfigRequiredClaimArgs>>? = null, usernameClaim: Output<String>? = null, usernamePrefix: Output<String>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
The JSON Web Token (JWT) claim to use as the username. The default is sub, which is expected to be a unique identifier of the end user. You can choose other claims, such as email or name, depending on the OpenID identity provider. Claims other than email are prefixed with the issuer URL to prevent naming clashes with other plug-ins.