Realm Web Authn Policy Args
data class RealmWebAuthnPolicyArgs(val acceptableAaguids: Output<List<String>>? = null, val attestationConveyancePreference: Output<String>? = null, val authenticatorAttachment: Output<String>? = null, val avoidSameAuthenticatorRegister: Output<Boolean>? = null, val createTimeout: Output<Int>? = null, val extraOrigins: Output<List<String>>? = null, val relyingPartyEntityName: Output<String>? = null, val relyingPartyId: Output<String>? = null, val requireResidentKey: Output<String>? = null, val signatureAlgorithms: Output<List<String>>? = null, val userVerificationRequirement: Output<String>? = null) : ConvertibleToJava<RealmWebAuthnPolicyArgs>
Constructors
Link copied to clipboard
constructor(acceptableAaguids: Output<List<String>>? = null, attestationConveyancePreference: Output<String>? = null, authenticatorAttachment: Output<String>? = null, avoidSameAuthenticatorRegister: Output<Boolean>? = null, createTimeout: Output<Int>? = null, extraOrigins: Output<List<String>>? = null, relyingPartyEntityName: Output<String>? = null, relyingPartyId: Output<String>? = null, requireResidentKey: Output<String>? = null, signatureAlgorithms: Output<List<String>>? = null, userVerificationRequirement: Output<String>? = null)
Properties
Link copied to clipboard
A set of AAGUIDs for which an authenticator can be registered.
Link copied to clipboard
Either none, indirect or direct
Link copied to clipboard
Either platform or cross-platform
Link copied to clipboard
When true
, Keycloak will avoid registering the authenticator for WebAuthn if it has already been registered. Defaults to false
.
Link copied to clipboard
The timeout value for creating a user's public key credential in seconds. When set to 0
, this timeout option is not adapted. Defaults to 0
.
Link copied to clipboard
A set of extra origins for non-web applications.
Link copied to clipboard
A human-readable server name for the WebAuthn Relying Party. Defaults to keycloak
.
Link copied to clipboard
The WebAuthn relying party ID.
Link copied to clipboard
Either Yes or No
Link copied to clipboard
Keycloak lists ES256, ES384, ES512, RS256, RS384, RS512, RS1 at the time of writing
Link copied to clipboard
Either required, preferred or discouraged