FunctionAppAuthSettingsActiveDirectoryArgs

data class FunctionAppAuthSettingsActiveDirectoryArgs(val allowedAudiences: Output<List<String>>? = null, val clientId: Output<String>, val clientSecret: Output<String>? = null) : ConvertibleToJava<FunctionAppAuthSettingsActiveDirectoryArgs>

Constructors

constructor(allowedAudiences: Output<List<String>>? = null, clientId: Output<String>, clientSecret: Output<String>? = null)

Properties

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

Allowed audience values to consider when validating JWTs issued by Azure Active Directory.

Link copied to clipboard
val clientId: Output<String>

The Client ID of this relying party application. Enables OpenIDConnection authentication with Azure Active Directory.

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

The Client Secret of this relying party application. If no secret is provided, implicit flow will be used.

Functions

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