App Connection Authentication Args
data class AppConnectionAuthenticationArgs(val certificate: Output<String>? = null, val clientId: Output<String>? = null, val name: Output<String>? = null, val principalId: Output<String>? = null, val secret: Output<String>? = null, val subscriptionId: Output<String>? = null, val type: Output<String>) : ConvertibleToJava<AppConnectionAuthenticationArgs>
Properties
Link copied to clipboard
Service principal certificate for servicePrincipal
auth. Should be specified when type
is set to servicePrincipalCertificate
.
Link copied to clipboard
Client ID for userAssignedIdentity
or servicePrincipal
auth. Should be specified when type
is set to servicePrincipalSecret
or servicePrincipalCertificate
. When type
is set to userAssignedIdentity
, client_id
and subscription_id
should be either both specified or both not specified.
Link copied to clipboard
Principal ID for servicePrincipal
auth. Should be specified when type
is set to servicePrincipalSecret
or servicePrincipalCertificate
.
Link copied to clipboard
Subscription ID for userAssignedIdentity
. subscription_id
and client_id
should be either both specified or both not specified.