Oauth2Auth Code Flow Args
data class Oauth2AuthCodeFlowArgs(val authCode: Output<String>? = null, val clientId: Output<String>? = null, val clientSecret: Output<SecretArgs>? = null, val enablePkce: Output<Boolean>? = null, val pkceVerifier: Output<String>? = null, val redirectUri: Output<String>? = null, val scopes: Output<List<String>>? = null) : ConvertibleToJava<Oauth2AuthCodeFlowArgs>
Parameters to support Oauth 2.0 Auth Code Grant Authentication. See https://www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.
Properties
Link copied to clipboard
Client secret for user-provided OAuth app.
Link copied to clipboard
Whether to enable PKCE when the user performs the auth code flow.
Link copied to clipboard
PKCE verifier to be used during the auth code exchange.
Link copied to clipboard
Redirect URI to be provided during the auth code exchange.