OpenIdConnectConfigArgs

data class OpenIdConnectConfigArgs(val authorizationEndpoint: Output<String>? = null, val certificationUri: Output<String>? = null, val issuer: Output<String>? = null, val tokenEndpoint: Output<String>? = null, val wellKnownOpenIdConfiguration: Output<String>? = null) : ConvertibleToJava<OpenIdConnectConfigArgs>

The configuration settings of the endpoints used for the custom Open ID Connect provider.

Constructors

Link copied to clipboard
constructor(authorizationEndpoint: Output<String>? = null, certificationUri: Output<String>? = null, issuer: Output<String>? = null, tokenEndpoint: Output<String>? = null, wellKnownOpenIdConfiguration: Output<String>? = null)

Properties

Link copied to clipboard
val authorizationEndpoint: Output<String>? = null

The endpoint to be used to make an authorization request.

Link copied to clipboard
val certificationUri: Output<String>? = null

The endpoint that provides the keys necessary to validate the token.

Link copied to clipboard
val issuer: Output<String>? = null

The endpoint that issues the token.

Link copied to clipboard
val tokenEndpoint: Output<String>? = null

The endpoint to be used to request a token.

Link copied to clipboard

The endpoint that contains all the configuration endpoints for the provider.

Functions

Link copied to clipboard
open override fun toJava(): OpenIdConnectConfigArgs