Added WebAuth
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Keycloak Terraform / Terraform (push) Successful in 18s

This commit is contained in:
2026-05-19 01:54:42 +03:00
parent af4242950e
commit 0b95b936ec
+20
View File
@@ -19,6 +19,26 @@ resource "keycloak_realm" "hexor" {
duplicate_emails_allowed = false duplicate_emails_allowed = false
ssl_required = "external" ssl_required = "external"
web_authn_passwordless_policy {
relying_party_entity_name = "Hexor"
relying_party_id = "hexor.cy"
signature_algorithms = ["ES256", "RS256"]
user_verification_requirement = "required"
attestation_conveyance_preference = "none"
}
}
# =============================================================================
# Passkey (WebAuthn Passwordless) — required action
# =============================================================================
resource "keycloak_required_action" "webauthn_register_passwordless" {
realm_id = keycloak_realm.hexor.id
alias = "webauthn-register-passwordless"
name = "Webauthn Register Passwordless"
enabled = true
default_action = false
} }
# ============================================================================= # =============================================================================