Skip to content
Snippets Groups Projects
Commit 04e5d830 authored by Kristian Klausen's avatar Kristian Klausen :tada: Committed by Sven-Hendrik Haase
Browse files

keycloak: Add WebAuthn policy

Fix #120
parent 5c8f6ec6
No related branches found
No related tags found
1 merge request!85keycloak: Add WebAuthn policy and register "required action" webauthn-register
......@@ -58,11 +58,12 @@ resource "keycloak_realm" "archlinux" {
verify_email = true
login_with_email_allowed = true
password_policy = "length(8) and notUsername"
// TODO: WebAuthn policy
// https://github.com/mrparkers/terraform-provider-keycloak/issues/355
// "Relying Party Entity Name": "Arch Linux SSO"
// "Relying Party ID": "accounts.archlinux.org"
// "Signature Algorithms": "ES256, ES384, ES512"
web_authn_policy {
relying_party_entity_name = "Arch Linux SSO"
relying_party_id = "accounts.archlinux.org"
signature_algorithms = ["ES256", "RS256", "ES512"]
}
login_theme = "archlinux"
account_theme = "archlinux"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment