Identity Broker
An identity broker is an intermediary service that sits between applications and multiple identity providers, so an application can accept logins from several different identity sources without integrating with each one directly. It establishes trust between the parties and passes along identity information, simplifying how sign-in is handled across systems. Depending on the deployment, it may handle both the login process and the passing of permission-related information.
An identity broker is an intermediary proxy service that connects multiple service providers (SPs) with multiple identity providers (IdPs), acting as a trust-establishment and translation layer between them. In typical deployments it federates authentication by relaying or normalizing identity assertions and claims from upstream IdPs to downstream SPs, so that each SP need only maintain a trust relationship with the broker rather than with every IdP individually. Some brokers additionally translate a caller's instruction into action using their own credentials and permissions, which can involve authorization-related handling in addition to authentication brokering; the exact split between authentication federation and authorization functions depends on the product and configuration. Note that the specific federation protocols supported (for example SAML 2.0, OpenID Connect, or OAuth 2.0) and the degree of claim transformation vary by vendor and are out of scope for this general definition.
Why it matters
As organizations accumulate applications and identity sources, internal directories, customer identity providers, partner federations, and social logins, the integration burden grows quadratically if every application must establish and maintain trust with every identity provider individually. An identity broker collapses this into a hub-and-spoke model: each service provider trusts the broker, and the broker manages the upstream relationships with identity providers. This reduces the number of point-to-point federations that must be configured, monitored, and rotated, which typically lowers operational overhead and shrinks the surface area where trust misconfigurations can occur.
Because the broker sits in the authentication path for many applications and often normalizes or transforms the claims that flow downstream, it becomes a concentration point of trust. That centralization is precisely what makes it valuable, but it also means the broker's own security posture, credential handling, and claim-transformation logic warrant close scrutiny, an error or compromise at the broker can affect every downstream service provider that depends on it. Where a broker additionally acts on a caller's instruction using its own credentials and permissions, the scope of what it can do extends beyond relaying authentication assertions into authorization-adjacent territory, and that expanded scope should be governed accordingly.
The practical boundary of any given broker's responsibilities varies. Some deployments limit the broker to federating authentication by relaying and normalizing assertions; others include authorization-related handling. Understanding exactly which functions a specific broker performs, and which it delegates to the identity providers or service providers on either side, is essential before treating it as a trust boundary in an architecture.
Who it's relevant to
Inside Identity Broker
Common questions
Answers to the questions practitioners most commonly ask about Identity Broker.