We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that the newly added Passkeys in Auht0 (https://auth0.com/changelog#3CBET2mBWyqK0RS6poEJiC) is not supported by the provider.
From the Management API (https://auth0.com/docs/api/management/v2/connections/patch-connections-by-id) I get the response
` authentication_methods { passkey { enabled = true } password { enabled = true } }
passkey_options { challenge_ui = "both" local_enrollment_enabled = true progressive_enrollment_enabled = true } `
In Terraform I get "Unsupported block type" when adding the block
Expand the Auth0 resource "auth0_connection" in the options block by
`authentication_methods { passkey { enable = true } password { enable = true } }
passkey_options { challenge_ui = "both" or "button" or "autofill" local_enrollment_enabled = true progressive_enrollment_enabled = true }`
No response
The text was updated successfully, but these errors were encountered:
Any update on this?
Sorry, something went wrong.
This is a planned feature, with completion anticipated by the end of September. Thanks for your patience.
Cool feature. I presume this is still scheduled?
Any updates on this?
Successfully merging a pull request may close this issue.
Checklist
Describe the problem you'd like to have solved
It seems that the newly added Passkeys in Auht0 (https://auth0.com/changelog#3CBET2mBWyqK0RS6poEJiC) is not supported by the provider.
From the Management API (https://auth0.com/docs/api/management/v2/connections/patch-connections-by-id) I get the response
`
authentication_methods {
passkey {
enabled = true
}
password {
enabled = true
}
}
passkey_options {
challenge_ui = "both"
local_enrollment_enabled = true
progressive_enrollment_enabled = true
}
`
In Terraform I get "Unsupported block type" when adding the block
Describe the ideal solution
Expand the Auth0 resource "auth0_connection" in the options block by
`authentication_methods {
passkey {
enable = true
}
password {
enable = true
}
}
passkey_options {
challenge_ui = "both" or "button" or "autofill"
local_enrollment_enabled = true
progressive_enrollment_enabled = true
}`
Alternatives and current workarounds
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: