AzureActiveDirectoryRegistrationArgs

data class AzureActiveDirectoryRegistrationArgs(val clientId: Output<String>? = null, val clientSecretCertificateIssuer: Output<String>? = null, val clientSecretCertificateSubjectAlternativeName: Output<String>? = null, val clientSecretCertificateThumbprint: Output<String>? = null, val clientSecretSettingName: Output<String>? = null, val openIdIssuer: Output<String>? = null) : ConvertibleToJava<AzureActiveDirectoryRegistrationArgs>

The configuration settings of the Azure Active Directory app registration.

Constructors

Link copied to clipboard
constructor(clientId: Output<String>? = null, clientSecretCertificateIssuer: Output<String>? = null, clientSecretCertificateSubjectAlternativeName: Output<String>? = null, clientSecretCertificateThumbprint: Output<String>? = null, clientSecretSettingName: Output<String>? = null, openIdIssuer: Output<String>? = null)

Properties

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

The Client ID of this relying party application, known as the client_id. This setting is required for enabling OpenID Connection authentication with Azure Active Directory or other 3rd party OpenID Connect providers. More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html

Link copied to clipboard

An alternative to the client secret thumbprint, that is the issuer of a certificate used for signing purposes. This property acts as a replacement for the Client Secret Certificate Thumbprint. It is also optional.

An alternative to the client secret thumbprint, that is the subject alternative name of a certificate used for signing purposes. This property acts as a replacement for the Client Secret Certificate Thumbprint. It is also optional.

Link copied to clipboard

An alternative to the client secret, that is the thumbprint of a certificate used for signing purposes. This property acts as a replacement for the Client Secret. It is also optional.

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

The app setting name that contains the client secret of the relying party application.

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

The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application. When using Azure Active Directory, this value is the URI of the directory tenant, e.g. https://login.microsoftonline.com/v2.0/{tenant-guid}/. This URI is a case-sensitive identifier for the token issuer. More information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html

Functions

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