Skip to content
New issue

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

Add Passkey support #924

Open
1 task done
wisaco opened this issue Feb 28, 2024 · 1 comment
Open
1 task done

Add Passkey support #924

wisaco opened this issue Feb 28, 2024 · 1 comment
Labels
🌱 feature New feature or request

Comments

@wisaco
Copy link

wisaco commented Feb 28, 2024

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

@wisaco wisaco added the 🌱 feature New feature or request label Feb 28, 2024
@nikhil-pandey
Copy link

Any update on this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🌱 feature New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants