Authentication & Identity Hardening

Audience: Administrators, Platform Engineers, Security Officers
Time: ~10 min (overview)
Prerequisites: Control Plane deployed and reachable; Super Administrator access (your administrator account)

Control Core v3.4 strengthens how operators authenticate to the Control Plane: password hashing, breached-credential checks, hardened SAML/OIDC, passkeys, session lifecycle, and (in upcoming releases) SCIM provisioning and centralized revocation.


Overview

Authentication establishes who is using the Control Plane. Authorization over protected APIs and AI workloads still flows through your Bouncers and controls (Rego policies) — the Control Plane does not replace inline enforcement.

Use this guide set when you need to:

  • Configure enterprise SSO (SAML 2.0 or OIDC)
  • Enforce MFA and passkeys
  • Tune password and session policy
  • Plan SCIM-driven provisioning and fast deprovisioning

Compliance mapping

Framework / requirementControl Core capabilityGuide
NIST 800-63B (memorized secrets)Argon2id password hashing, breach checkPassword policy
PCI DSS 8.x (authentication)MFA, session timeout, lockout (rolling)MFA & passkeys, Sessions
ISO 27001 A.5.15–A.5.18SSO, RBAC, session revoke, auditSSO, Sessions
SOC 2 CC6.1Identity lifecycle, audit eventsSCIM, User management
FedRAMP IA-2 / IA-5Phishing-resistant MFA (passkeys), IdP federationMFA & passkeys

Authentication methods

MethodControl Plane UI pathStatus
Username + passwordSettings → Users → Authentication MethodsAvailable
TOTP MFAPer-user enrollment; org-wide via AUTH_REQUIRE_MFAAvailable
SAML 2.0 / OIDC SSOSettings → Users → SSOAvailable (hardened assertions)
Passkeys (WebAuthn/FIDO2)Settings → Users → PasskeysAvailable
SCIM 2.0 provisioningAPI + IdP appAvailable (release-dependent)

Troubleshooting: If no authentication method works after upgrade, confirm at least one method is enabled under Authentication Methods, your administrator account can sign in, and the Control Plane API health endpoint returns HTTP 200. See Admin troubleshooting.

Deep-dive guides

  1. SSO with SAML & OIDC — federation, assertion hardening, JIT attributes
  2. MFA & passkeys — TOTP enforcement and FIDO2
  3. Password policy — Argon2id, breach check, rotation
  4. Session management — JWT lifetime, idle timeout, revocation
  5. SCIM provisioning — automated user lifecycle

Next steps