Bifrost Enterprise uses SCIM-backed identity provisioning to connect your organization’s identity provider to Bifrost. A single configuration gives you:
Single sign-on (SSO) via OAuth 2.0 / OIDC with JWKS-based JWT validation
Automatic role assignment using custom claims, app roles, or group-to-role mappings
Team synchronization from IdP groups into Bifrost teams
Business unit mapping from IdP attributes to Bifrost business units
Bulk user provisioning with filter-preview before import
Silent token refresh using server-stored refresh tokens
Once configured, users sign in to Bifrost with their corporate credentials and inherit the right role and permissions immediately - no manual account creation.
Pick your IdP to follow a step-by-step setup guide. All providers share the same Bifrost configuration surface - the only difference is how the OAuth client and role/group claims are created on the provider side.
Okta
OIDC with Org or Custom Authorization Servers, plus group-to-role mapping and API tokens for bulk user sync.
Microsoft Entra
Entra ID (Azure AD) with app roles, group claims, and v1.0 / v2.0 token support.
Zitadel
Cloud or self-hosted Zitadel with project-scoped role claims and service-account-based provisioning.
Google Workspace
Google Workspace domains with OAuth login plus optional Directory API sync via a service account.
Login - Bifrost redirects unauthenticated users to the provider’s authorization endpoint (Authorization Code flow).
Token exchange - on callback, Bifrost exchanges the code for an access token and refresh token, stores them in an HttpOnly cookie / server session, and validates the JWT against the provider’s JWKS.
Identity extraction - configurable JWT claims (userIdField, rolesField, teamIdsField) are mapped to a Bifrost user, role, and teams. Provider-specific app roles or custom attributes override claim lookup.
Attribute mapping - optional attributeRoleMappings, attributeTeamMappings, and attributeBusinessUnitMappings translate arbitrary claim values (e.g., a department string or Okta group name) into Bifrost roles, teams, or business units.
Bulk import - admins can preview users matching a filter and bulk-import them via the dashboard, which calls the provider’s user directory API.
Silent refresh - when the access token expires, Bifrost uses the stored refresh token to mint a new one without requiring re-login.
Fields marked env.* supported accept "env.VAR_NAME" in addition to a literal value - Bifrost resolves the variable from the process environment at startup. Attribute mapping arrays are always plain JSON (they cannot reference env vars).
Navigate to Governance → User Provisioning in the Bifrost dashboard.
Select your identity provider from the SCIM Provider dropdown.
Fill in the provider-specific fields. Required fields are marked and validated on Verify.
Click Verify to test credentials end-to-end. Bifrost will reach the provider’s JWKS / directory endpoint and report any failures.
Configure Attribute → Role / Team / Business Unit mappings as needed.
Toggle Enabled and click Save Configuration.
After enabling a new provider, the next dashboard load redirects to your IdP for login. Test in an incognito window first to avoid being locked out of your current session.
Attribute mappings let you translate claim values into Bifrost roles, teams, or business units without forcing your IdP admins to restructure claim names.
Access denied: no application role or group mapping is assigned to this user.
Make sure you have assigned user to the Bifrost IdP application and they have a valid group/attribute mapping to role in Bifrost
Redirect loop on login
Make sure you have restarted pods/Bifrost instance after changing SCIM configuration, or check for a redirect URI mismatch. Exact string match required - check trailing slashes and http vs https.
invalid audience
audience field does not match the access token’s aud claim. Use the same value your IdP issues.
Empty roles / teams
Claim mapping is off. Verify the JWT at jwt.io and check rolesField / teamIdsField.
Token refresh failing
offline_access scope missing or refresh token revoked. Re-enable the scope and re-authenticate.
First user gets Admin
By design - if no matching role mapping applies, the first user is promoted to Admin so they can finish configuration. Subsequent users default to Viewer.
Provider-specific troubleshooting lives in each IdP’s guide.