published on Wednesday, Jul 1, 2026 by Pulumi
published on Wednesday, Jul 1, 2026 by Pulumi
WARNING: This feature is only available as a part of the Identity Engine. Contact support for further information.
Manages the WebAuthn authenticator method settings, including AAGUID group allowlists, user verification preferences, and passkey configuration.
Note: This resource manages the settings of an existing WebAuthn authenticator method. The method itself cannot be created or deleted — it exists as part of the authenticator. On destroy, settings are reset to defaults.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const webauthn = okta.getAuthenticator({
key: "webauthn",
});
const example = new okta.AuthenticatorMethodWebauthn("example", {
authenticatorId: webauthn.then(webauthn => webauthn.id),
userVerification: "PREFERRED",
attachment: "ANY",
allowSyncablePasskeys: true,
aaguidGroups: [{
name: "YubiKeys",
aaguids: ["cb69481e-8ff7-4039-93ec-0a2729a154a8"],
}],
});
import pulumi
import pulumi_okta as okta
webauthn = okta.get_authenticator(key="webauthn")
example = okta.AuthenticatorMethodWebauthn("example",
authenticator_id=webauthn.id,
user_verification="PREFERRED",
attachment="ANY",
allow_syncable_passkeys=True,
aaguid_groups=[{
"name": "YubiKeys",
"aaguids": ["cb69481e-8ff7-4039-93ec-0a2729a154a8"],
}])
package main
import (
"github.com/pulumi/pulumi-okta/sdk/v6/go/okta"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
webauthn, err := okta.GetAuthenticator(ctx, &okta.LookupAuthenticatorArgs{
Key: pulumi.StringRef("webauthn"),
}, nil)
if err != nil {
return err
}
_, err = okta.NewAuthenticatorMethodWebauthn(ctx, "example", &okta.AuthenticatorMethodWebauthnArgs{
AuthenticatorId: pulumi.String(webauthn.Id),
UserVerification: pulumi.String("PREFERRED"),
Attachment: pulumi.String("ANY"),
AllowSyncablePasskeys: pulumi.Bool(true),
AaguidGroups: okta.AuthenticatorMethodWebauthnAaguidGroupArray{
&okta.AuthenticatorMethodWebauthnAaguidGroupArgs{
Name: pulumi.String("YubiKeys"),
Aaguids: pulumi.StringArray{
pulumi.String("cb69481e-8ff7-4039-93ec-0a2729a154a8"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Okta = Pulumi.Okta;
return await Deployment.RunAsync(() =>
{
var webauthn = Okta.GetAuthenticator.Invoke(new()
{
Key = "webauthn",
});
var example = new Okta.AuthenticatorMethodWebauthn("example", new()
{
AuthenticatorId = webauthn.Apply(getAuthenticatorResult => getAuthenticatorResult.Id),
UserVerification = "PREFERRED",
Attachment = "ANY",
AllowSyncablePasskeys = true,
AaguidGroups = new[]
{
new Okta.Inputs.AuthenticatorMethodWebauthnAaguidGroupArgs
{
Name = "YubiKeys",
Aaguids = new[]
{
"cb69481e-8ff7-4039-93ec-0a2729a154a8",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.okta.OktaFunctions;
import com.pulumi.okta.inputs.GetAuthenticatorArgs;
import com.pulumi.okta.AuthenticatorMethodWebauthn;
import com.pulumi.okta.AuthenticatorMethodWebauthnArgs;
import com.pulumi.okta.inputs.AuthenticatorMethodWebauthnAaguidGroupArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var webauthn = OktaFunctions.getAuthenticator(GetAuthenticatorArgs.builder()
.key("webauthn")
.build());
var example = new AuthenticatorMethodWebauthn("example", AuthenticatorMethodWebauthnArgs.builder()
.authenticatorId(webauthn.id())
.userVerification("PREFERRED")
.attachment("ANY")
.allowSyncablePasskeys(true)
.aaguidGroups(AuthenticatorMethodWebauthnAaguidGroupArgs.builder()
.name("YubiKeys")
.aaguids("cb69481e-8ff7-4039-93ec-0a2729a154a8")
.build())
.build());
}
}
resources:
example:
type: okta:AuthenticatorMethodWebauthn
properties:
authenticatorId: ${webauthn.id}
userVerification: PREFERRED
attachment: ANY
allowSyncablePasskeys: true
aaguidGroups:
- name: YubiKeys
aaguids:
- cb69481e-8ff7-4039-93ec-0a2729a154a8
variables:
webauthn:
fn::invoke:
function: okta:getAuthenticator
arguments:
key: webauthn
pulumi {
required_providers {
okta = {
source = "pulumi/okta"
}
}
}
data "okta_getauthenticator" "webauthn" {
key = "webauthn"
}
resource "okta_authenticatormethodwebauthn" "example" {
authenticator_id = data.okta_getauthenticator.webauthn.id
user_verification = "PREFERRED"
attachment = "ANY"
allow_syncable_passkeys = true
aaguid_groups {
name = "YubiKeys"
aaguids = ["cb69481e-8ff7-4039-93ec-0a2729a154a8"]
}
}
Create AuthenticatorMethodWebauthn Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthenticatorMethodWebauthn(name: string, args: AuthenticatorMethodWebauthnArgs, opts?: CustomResourceOptions);@overload
def AuthenticatorMethodWebauthn(resource_name: str,
args: AuthenticatorMethodWebauthnArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthenticatorMethodWebauthn(resource_name: str,
opts: Optional[ResourceOptions] = None,
authenticator_id: Optional[str] = None,
fips_compliant: Optional[bool] = None,
attachment: Optional[str] = None,
allow_syncable_passkeys: Optional[bool] = None,
cert_based_attestation_validation: Optional[bool] = None,
enable_autofill_ui: Optional[bool] = None,
aaguid_groups: Optional[Sequence[AuthenticatorMethodWebauthnAaguidGroupArgs]] = None,
hardware_protected: Optional[bool] = None,
resident_key_requirement: Optional[str] = None,
rp_id: Optional[AuthenticatorMethodWebauthnRpIdArgs] = None,
show_sign_in_with_a_passkey_button: Optional[bool] = None,
user_verification: Optional[str] = None,
user_verification_for_verify: Optional[str] = None)func NewAuthenticatorMethodWebauthn(ctx *Context, name string, args AuthenticatorMethodWebauthnArgs, opts ...ResourceOption) (*AuthenticatorMethodWebauthn, error)public AuthenticatorMethodWebauthn(string name, AuthenticatorMethodWebauthnArgs args, CustomResourceOptions? opts = null)
public AuthenticatorMethodWebauthn(String name, AuthenticatorMethodWebauthnArgs args)
public AuthenticatorMethodWebauthn(String name, AuthenticatorMethodWebauthnArgs args, CustomResourceOptions options)
type: okta:AuthenticatorMethodWebauthn
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "okta_authenticator_method_webauthn" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AuthenticatorMethodWebauthnArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AuthenticatorMethodWebauthnArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AuthenticatorMethodWebauthnArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthenticatorMethodWebauthnArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthenticatorMethodWebauthnArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var authenticatorMethodWebauthnResource = new Okta.AuthenticatorMethodWebauthn("authenticatorMethodWebauthnResource", new()
{
AuthenticatorId = "string",
FipsCompliant = false,
Attachment = "string",
AllowSyncablePasskeys = false,
CertBasedAttestationValidation = false,
EnableAutofillUi = false,
AaguidGroups = new[]
{
new Okta.Inputs.AuthenticatorMethodWebauthnAaguidGroupArgs
{
Aaguids = new[]
{
"string",
},
Name = "string",
},
},
HardwareProtected = false,
ResidentKeyRequirement = "string",
RpId = new Okta.Inputs.AuthenticatorMethodWebauthnRpIdArgs
{
Domain = new Okta.Inputs.AuthenticatorMethodWebauthnRpIdDomainArgs
{
Name = "string",
ValidationStatus = "string",
},
Enabled = false,
},
ShowSignInWithAPasskeyButton = false,
UserVerification = "string",
UserVerificationForVerify = "string",
});
example, err := okta.NewAuthenticatorMethodWebauthn(ctx, "authenticatorMethodWebauthnResource", &okta.AuthenticatorMethodWebauthnArgs{
AuthenticatorId: pulumi.String("string"),
FipsCompliant: pulumi.Bool(false),
Attachment: pulumi.String("string"),
AllowSyncablePasskeys: pulumi.Bool(false),
CertBasedAttestationValidation: pulumi.Bool(false),
EnableAutofillUi: pulumi.Bool(false),
AaguidGroups: okta.AuthenticatorMethodWebauthnAaguidGroupArray{
&okta.AuthenticatorMethodWebauthnAaguidGroupArgs{
Aaguids: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
},
},
HardwareProtected: pulumi.Bool(false),
ResidentKeyRequirement: pulumi.String("string"),
RpId: &okta.AuthenticatorMethodWebauthnRpIdArgs{
Domain: &okta.AuthenticatorMethodWebauthnRpIdDomainArgs{
Name: pulumi.String("string"),
ValidationStatus: pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
},
ShowSignInWithAPasskeyButton: pulumi.Bool(false),
UserVerification: pulumi.String("string"),
UserVerificationForVerify: pulumi.String("string"),
})
resource "okta_authenticator_method_webauthn" "authenticatorMethodWebauthnResource" {
lifecycle {
create_before_destroy = true
}
authenticator_id = "string"
fips_compliant = false
attachment = "string"
allow_syncable_passkeys = false
cert_based_attestation_validation = false
enable_autofill_ui = false
aaguid_groups {
aaguids = ["string"]
name = "string"
}
hardware_protected = false
resident_key_requirement = "string"
rp_id = {
domain = {
name = "string"
validation_status = "string"
}
enabled = false
}
show_sign_in_with_a_passkey_button = false
user_verification = "string"
user_verification_for_verify = "string"
}
var authenticatorMethodWebauthnResource = new AuthenticatorMethodWebauthn("authenticatorMethodWebauthnResource", AuthenticatorMethodWebauthnArgs.builder()
.authenticatorId("string")
.fipsCompliant(false)
.attachment("string")
.allowSyncablePasskeys(false)
.certBasedAttestationValidation(false)
.enableAutofillUi(false)
.aaguidGroups(AuthenticatorMethodWebauthnAaguidGroupArgs.builder()
.aaguids("string")
.name("string")
.build())
.hardwareProtected(false)
.residentKeyRequirement("string")
.rpId(AuthenticatorMethodWebauthnRpIdArgs.builder()
.domain(AuthenticatorMethodWebauthnRpIdDomainArgs.builder()
.name("string")
.validationStatus("string")
.build())
.enabled(false)
.build())
.showSignInWithAPasskeyButton(false)
.userVerification("string")
.userVerificationForVerify("string")
.build());
authenticator_method_webauthn_resource = okta.AuthenticatorMethodWebauthn("authenticatorMethodWebauthnResource",
authenticator_id="string",
fips_compliant=False,
attachment="string",
allow_syncable_passkeys=False,
cert_based_attestation_validation=False,
enable_autofill_ui=False,
aaguid_groups=[{
"aaguids": ["string"],
"name": "string",
}],
hardware_protected=False,
resident_key_requirement="string",
rp_id={
"domain": {
"name": "string",
"validation_status": "string",
},
"enabled": False,
},
show_sign_in_with_a_passkey_button=False,
user_verification="string",
user_verification_for_verify="string")
const authenticatorMethodWebauthnResource = new okta.AuthenticatorMethodWebauthn("authenticatorMethodWebauthnResource", {
authenticatorId: "string",
fipsCompliant: false,
attachment: "string",
allowSyncablePasskeys: false,
certBasedAttestationValidation: false,
enableAutofillUi: false,
aaguidGroups: [{
aaguids: ["string"],
name: "string",
}],
hardwareProtected: false,
residentKeyRequirement: "string",
rpId: {
domain: {
name: "string",
validationStatus: "string",
},
enabled: false,
},
showSignInWithAPasskeyButton: false,
userVerification: "string",
userVerificationForVerify: "string",
});
type: okta:AuthenticatorMethodWebauthn
properties:
aaguidGroups:
- aaguids:
- string
name: string
allowSyncablePasskeys: false
attachment: string
authenticatorId: string
certBasedAttestationValidation: false
enableAutofillUi: false
fipsCompliant: false
hardwareProtected: false
residentKeyRequirement: string
rpId:
domain:
name: string
validationStatus: string
enabled: false
showSignInWithAPasskeyButton: false
userVerification: string
userVerificationForVerify: string
AuthenticatorMethodWebauthn Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AuthenticatorMethodWebauthn resource accepts the following input properties:
- Authenticator
Id string - The ID of the WebAuthn authenticator.
- Aaguid
Groups List<AuthenticatorMethod Webauthn Aaguid Group> - List of AAGUID group configurations.
- Allow
Syncable boolPasskeys - Whether syncable passkeys are allowed.
- Attachment string
- Method attachment setting.
- Cert
Based boolAttestation Validation - Whether certificate-based attestation validation is enabled.
- Enable
Autofill boolUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- Fips
Compliant bool - Whether the authenticator must be FIPS compliant.
- Hardware
Protected bool - Whether the authenticator must store the private key on hardware.
- Resident
Key stringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - Rp
Id AuthenticatorMethod Webauthn Rp Id - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- bool
- Whether to show the "Sign in with a Passkey" button.
- User
Verification string - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - User
Verification stringFor Verify - User verification setting for authentication (verification).
- Authenticator
Id string - The ID of the WebAuthn authenticator.
- Aaguid
Groups []AuthenticatorMethod Webauthn Aaguid Group Args - List of AAGUID group configurations.
- Allow
Syncable boolPasskeys - Whether syncable passkeys are allowed.
- Attachment string
- Method attachment setting.
- Cert
Based boolAttestation Validation - Whether certificate-based attestation validation is enabled.
- Enable
Autofill boolUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- Fips
Compliant bool - Whether the authenticator must be FIPS compliant.
- Hardware
Protected bool - Whether the authenticator must store the private key on hardware.
- Resident
Key stringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - Rp
Id AuthenticatorMethod Webauthn Rp Id Args - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- bool
- Whether to show the "Sign in with a Passkey" button.
- User
Verification string - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - User
Verification stringFor Verify - User verification setting for authentication (verification).
- authenticator_
id string - The ID of the WebAuthn authenticator.
- aaguid_
groups list(object) - List of AAGUID group configurations.
- allow_
syncable_ boolpasskeys - Whether syncable passkeys are allowed.
- attachment string
- Method attachment setting.
- cert_
based_ boolattestation_ validation - Whether certificate-based attestation validation is enabled.
- enable_
autofill_ boolui - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips_
compliant bool - Whether the authenticator must be FIPS compliant.
- hardware_
protected bool - Whether the authenticator must store the private key on hardware.
- resident_
key_ stringrequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp_
id object - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- bool
- Whether to show the "Sign in with a Passkey" button.
- user_
verification string - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user_
verification_ stringfor_ verify - User verification setting for authentication (verification).
- authenticator
Id String - The ID of the WebAuthn authenticator.
- aaguid
Groups List<AuthenticatorMethod Webauthn Aaguid Group> - List of AAGUID group configurations.
- allow
Syncable BooleanPasskeys - Whether syncable passkeys are allowed.
- attachment String
- Method attachment setting.
- cert
Based BooleanAttestation Validation - Whether certificate-based attestation validation is enabled.
- enable
Autofill BooleanUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips
Compliant Boolean - Whether the authenticator must be FIPS compliant.
- hardware
Protected Boolean - Whether the authenticator must store the private key on hardware.
- resident
Key StringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp
Id AuthenticatorMethod Webauthn Rp Id - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- Boolean
- Whether to show the "Sign in with a Passkey" button.
- user
Verification String - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user
Verification StringFor Verify - User verification setting for authentication (verification).
- authenticator
Id string - The ID of the WebAuthn authenticator.
- aaguid
Groups AuthenticatorMethod Webauthn Aaguid Group[] - List of AAGUID group configurations.
- allow
Syncable booleanPasskeys - Whether syncable passkeys are allowed.
- attachment string
- Method attachment setting.
- cert
Based booleanAttestation Validation - Whether certificate-based attestation validation is enabled.
- enable
Autofill booleanUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips
Compliant boolean - Whether the authenticator must be FIPS compliant.
- hardware
Protected boolean - Whether the authenticator must store the private key on hardware.
- resident
Key stringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp
Id AuthenticatorMethod Webauthn Rp Id - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- boolean
- Whether to show the "Sign in with a Passkey" button.
- user
Verification string - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user
Verification stringFor Verify - User verification setting for authentication (verification).
- authenticator_
id str - The ID of the WebAuthn authenticator.
- aaguid_
groups Sequence[AuthenticatorMethod Webauthn Aaguid Group Args] - List of AAGUID group configurations.
- allow_
syncable_ boolpasskeys - Whether syncable passkeys are allowed.
- attachment str
- Method attachment setting.
- cert_
based_ boolattestation_ validation - Whether certificate-based attestation validation is enabled.
- enable_
autofill_ boolui - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips_
compliant bool - Whether the authenticator must be FIPS compliant.
- hardware_
protected bool - Whether the authenticator must store the private key on hardware.
- resident_
key_ strrequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp_
id AuthenticatorMethod Webauthn Rp Id Args - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- bool
- Whether to show the "Sign in with a Passkey" button.
- user_
verification str - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user_
verification_ strfor_ verify - User verification setting for authentication (verification).
- authenticator
Id String - The ID of the WebAuthn authenticator.
- aaguid
Groups List<Property Map> - List of AAGUID group configurations.
- allow
Syncable BooleanPasskeys - Whether syncable passkeys are allowed.
- attachment String
- Method attachment setting.
- cert
Based BooleanAttestation Validation - Whether certificate-based attestation validation is enabled.
- enable
Autofill BooleanUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips
Compliant Boolean - Whether the authenticator must be FIPS compliant.
- hardware
Protected Boolean - Whether the authenticator must store the private key on hardware.
- resident
Key StringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp
Id Property Map - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- Boolean
- Whether to show the "Sign in with a Passkey" button.
- user
Verification String - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user
Verification StringFor Verify - User verification setting for authentication (verification).
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthenticatorMethodWebauthn resource produces the following output properties:
Look up Existing AuthenticatorMethodWebauthn Resource
Get an existing AuthenticatorMethodWebauthn resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AuthenticatorMethodWebauthnState, opts?: CustomResourceOptions): AuthenticatorMethodWebauthn@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aaguid_groups: Optional[Sequence[AuthenticatorMethodWebauthnAaguidGroupArgs]] = None,
allow_syncable_passkeys: Optional[bool] = None,
attachment: Optional[str] = None,
authenticator_id: Optional[str] = None,
cert_based_attestation_validation: Optional[bool] = None,
enable_autofill_ui: Optional[bool] = None,
fips_compliant: Optional[bool] = None,
hardware_protected: Optional[bool] = None,
resident_key_requirement: Optional[str] = None,
rp_id: Optional[AuthenticatorMethodWebauthnRpIdArgs] = None,
show_sign_in_with_a_passkey_button: Optional[bool] = None,
status: Optional[str] = None,
user_verification: Optional[str] = None,
user_verification_for_verify: Optional[str] = None) -> AuthenticatorMethodWebauthnfunc GetAuthenticatorMethodWebauthn(ctx *Context, name string, id IDInput, state *AuthenticatorMethodWebauthnState, opts ...ResourceOption) (*AuthenticatorMethodWebauthn, error)public static AuthenticatorMethodWebauthn Get(string name, Input<string> id, AuthenticatorMethodWebauthnState? state, CustomResourceOptions? opts = null)public static AuthenticatorMethodWebauthn get(String name, Output<String> id, AuthenticatorMethodWebauthnState state, CustomResourceOptions options)resources: _: type: okta:AuthenticatorMethodWebauthn get: id: ${id}import {
to = okta_authenticator_method_webauthn.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Aaguid
Groups List<AuthenticatorMethod Webauthn Aaguid Group> - List of AAGUID group configurations.
- Allow
Syncable boolPasskeys - Whether syncable passkeys are allowed.
- Attachment string
- Method attachment setting.
- Authenticator
Id string - The ID of the WebAuthn authenticator.
- Cert
Based boolAttestation Validation - Whether certificate-based attestation validation is enabled.
- Enable
Autofill boolUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- Fips
Compliant bool - Whether the authenticator must be FIPS compliant.
- Hardware
Protected bool - Whether the authenticator must store the private key on hardware.
- Resident
Key stringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - Rp
Id AuthenticatorMethod Webauthn Rp Id - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- bool
- Whether to show the "Sign in with a Passkey" button.
- Status string
- The status of the WebAuthn method (
ACTIVEorINACTIVE). - User
Verification string - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - User
Verification stringFor Verify - User verification setting for authentication (verification).
- Aaguid
Groups []AuthenticatorMethod Webauthn Aaguid Group Args - List of AAGUID group configurations.
- Allow
Syncable boolPasskeys - Whether syncable passkeys are allowed.
- Attachment string
- Method attachment setting.
- Authenticator
Id string - The ID of the WebAuthn authenticator.
- Cert
Based boolAttestation Validation - Whether certificate-based attestation validation is enabled.
- Enable
Autofill boolUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- Fips
Compliant bool - Whether the authenticator must be FIPS compliant.
- Hardware
Protected bool - Whether the authenticator must store the private key on hardware.
- Resident
Key stringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - Rp
Id AuthenticatorMethod Webauthn Rp Id Args - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- bool
- Whether to show the "Sign in with a Passkey" button.
- Status string
- The status of the WebAuthn method (
ACTIVEorINACTIVE). - User
Verification string - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - User
Verification stringFor Verify - User verification setting for authentication (verification).
- aaguid_
groups list(object) - List of AAGUID group configurations.
- allow_
syncable_ boolpasskeys - Whether syncable passkeys are allowed.
- attachment string
- Method attachment setting.
- authenticator_
id string - The ID of the WebAuthn authenticator.
- cert_
based_ boolattestation_ validation - Whether certificate-based attestation validation is enabled.
- enable_
autofill_ boolui - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips_
compliant bool - Whether the authenticator must be FIPS compliant.
- hardware_
protected bool - Whether the authenticator must store the private key on hardware.
- resident_
key_ stringrequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp_
id object - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- bool
- Whether to show the "Sign in with a Passkey" button.
- status string
- The status of the WebAuthn method (
ACTIVEorINACTIVE). - user_
verification string - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user_
verification_ stringfor_ verify - User verification setting for authentication (verification).
- aaguid
Groups List<AuthenticatorMethod Webauthn Aaguid Group> - List of AAGUID group configurations.
- allow
Syncable BooleanPasskeys - Whether syncable passkeys are allowed.
- attachment String
- Method attachment setting.
- authenticator
Id String - The ID of the WebAuthn authenticator.
- cert
Based BooleanAttestation Validation - Whether certificate-based attestation validation is enabled.
- enable
Autofill BooleanUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips
Compliant Boolean - Whether the authenticator must be FIPS compliant.
- hardware
Protected Boolean - Whether the authenticator must store the private key on hardware.
- resident
Key StringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp
Id AuthenticatorMethod Webauthn Rp Id - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- Boolean
- Whether to show the "Sign in with a Passkey" button.
- status String
- The status of the WebAuthn method (
ACTIVEorINACTIVE). - user
Verification String - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user
Verification StringFor Verify - User verification setting for authentication (verification).
- aaguid
Groups AuthenticatorMethod Webauthn Aaguid Group[] - List of AAGUID group configurations.
- allow
Syncable booleanPasskeys - Whether syncable passkeys are allowed.
- attachment string
- Method attachment setting.
- authenticator
Id string - The ID of the WebAuthn authenticator.
- cert
Based booleanAttestation Validation - Whether certificate-based attestation validation is enabled.
- enable
Autofill booleanUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips
Compliant boolean - Whether the authenticator must be FIPS compliant.
- hardware
Protected boolean - Whether the authenticator must store the private key on hardware.
- resident
Key stringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp
Id AuthenticatorMethod Webauthn Rp Id - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- boolean
- Whether to show the "Sign in with a Passkey" button.
- status string
- The status of the WebAuthn method (
ACTIVEorINACTIVE). - user
Verification string - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user
Verification stringFor Verify - User verification setting for authentication (verification).
- aaguid_
groups Sequence[AuthenticatorMethod Webauthn Aaguid Group Args] - List of AAGUID group configurations.
- allow_
syncable_ boolpasskeys - Whether syncable passkeys are allowed.
- attachment str
- Method attachment setting.
- authenticator_
id str - The ID of the WebAuthn authenticator.
- cert_
based_ boolattestation_ validation - Whether certificate-based attestation validation is enabled.
- enable_
autofill_ boolui - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips_
compliant bool - Whether the authenticator must be FIPS compliant.
- hardware_
protected bool - Whether the authenticator must store the private key on hardware.
- resident_
key_ strrequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp_
id AuthenticatorMethod Webauthn Rp Id Args - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- bool
- Whether to show the "Sign in with a Passkey" button.
- status str
- The status of the WebAuthn method (
ACTIVEorINACTIVE). - user_
verification str - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user_
verification_ strfor_ verify - User verification setting for authentication (verification).
- aaguid
Groups List<Property Map> - List of AAGUID group configurations.
- allow
Syncable BooleanPasskeys - Whether syncable passkeys are allowed.
- attachment String
- Method attachment setting.
- authenticator
Id String - The ID of the WebAuthn authenticator.
- cert
Based BooleanAttestation Validation - Whether certificate-based attestation validation is enabled.
- enable
Autofill BooleanUi - Enables the passkeys autofill UI for WebAuthn discoverable credentials.
- fips
Compliant Boolean - Whether the authenticator must be FIPS compliant.
- hardware
Protected Boolean - Whether the authenticator must store the private key on hardware.
- resident
Key StringRequirement - Resident key requirement. Values:
REQUIRED,DISCOURAGED,PREFERRED. - rp
Id Property Map - The Relying Party (RP) ID configuration for WebAuthn. Contains:
- Boolean
- Whether to show the "Sign in with a Passkey" button.
- status String
- The status of the WebAuthn method (
ACTIVEorINACTIVE). - user
Verification String - User verification setting for enrollment. Values:
DISCOURAGED,PREFERRED,REQUIRED. - user
Verification StringFor Verify - User verification setting for authentication (verification).
Supporting Types
AuthenticatorMethodWebauthnAaguidGroup, AuthenticatorMethodWebauthnAaguidGroupArgs
AuthenticatorMethodWebauthnRpId, AuthenticatorMethodWebauthnRpIdArgs
- Domain
Authenticator
Method Webauthn Rp Id Domain - The RP domain configuration. Contains:
- Enabled bool
- Whether the RP ID is active and used for WebAuthn operations.
- Domain
Authenticator
Method Webauthn Rp Id Domain - The RP domain configuration. Contains:
- Enabled bool
- Whether the RP ID is active and used for WebAuthn operations.
- domain
Authenticator
Method Webauthn Rp Id Domain - The RP domain configuration. Contains:
- enabled Boolean
- Whether the RP ID is active and used for WebAuthn operations.
- domain
Authenticator
Method Webauthn Rp Id Domain - The RP domain configuration. Contains:
- enabled boolean
- Whether the RP ID is active and used for WebAuthn operations.
- domain
Authenticator
Method Webauthn Rp Id Domain - The RP domain configuration. Contains:
- enabled bool
- Whether the RP ID is active and used for WebAuthn operations.
- domain Property Map
- The RP domain configuration. Contains:
- enabled Boolean
- Whether the RP ID is active and used for WebAuthn operations.
AuthenticatorMethodWebauthnRpIdDomain, AuthenticatorMethodWebauthnRpIdDomainArgs
- Name string
- The RP ID domain value used for WebAuthn operations.
- Validation
Status string - The validation status of the domain.
- Name string
- The RP ID domain value used for WebAuthn operations.
- Validation
Status string - The validation status of the domain.
- name string
- The RP ID domain value used for WebAuthn operations.
- validation_
status string - The validation status of the domain.
- name String
- The RP ID domain value used for WebAuthn operations.
- validation
Status String - The validation status of the domain.
- name string
- The RP ID domain value used for WebAuthn operations.
- validation
Status string - The validation status of the domain.
- name str
- The RP ID domain value used for WebAuthn operations.
- validation_
status str - The validation status of the domain.
- name String
- The RP ID domain value used for WebAuthn operations.
- validation
Status String - The validation status of the domain.
Import
The WebAuthn method can be imported using the authenticator ID:
$ pulumi import okta:index/authenticatorMethodWebauthn:AuthenticatorMethodWebauthn example aut1234567890
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Okta pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oktaTerraform Provider.
published on Wednesday, Jul 1, 2026 by Pulumi