Federation Proxy
A federation proxy is a middleman component that sits between identity providers (the systems that verify who a user is) and relying parties (the applications a user wants to reach). To the identity providers it looks like an application requesting logins, and to the applications it looks like an identity provider supplying them, so both sides only need to connect to the proxy rather than to each other directly. This simplifies connectivity when many identity providers and many applications need to trust one another.
A federation proxy is a component that acts as a logical relying party (RP) to a set of identity providers (IdPs) and simultaneously as a logical IdP to a set of RPs, bridging the two sides through a single point of connectivity (NIST). In deployment, both service providers (SPs)/RPs and IdPs establish federation trust only with the proxy, which mediates and re-issues authentication assertions or tokens between them rather than requiring point-to-point trust across every party. It is commonly implemented as a federation hub that aggregates trust and, depending on the product, may translate or normalize between federation protocols and profiles (for example, brokering across SAML 2.0-based deployments); the specific protocol handling, assertion transformation, and credential collection behavior vary by vendor and configuration. Note that a federation proxy operates at the runtime authentication/federation layer and is distinct from identity governance concerns such as provisioning, access certification, or segregation of duties; authorization decisions at target applications remain out of scope of the proxy's bridging function unless the deployment explicitly configures it otherwise.
Why it matters
As federation deployments grow, the number of point-to-point trust relationships between identity providers and relying parties can expand rapidly. Without a mediating component, every IdP that needs to serve every application must establish and maintain a direct federation trust, along with the associated metadata exchange, certificate rotation, and profile configuration. A federation proxy reduces this to a hub-and-spoke arrangement: each IdP and each application trusts only the proxy, which mediates and re-issues assertions between the two sides. This simplifies onboarding, consolidates where federation trust is managed, and can lower the operational burden of maintaining many bilateral connections.
Because the proxy sits in the authentication path between users, IdPs, and applications, it also becomes a concentration point that warrants careful protection. Every login flow for the applications behind it traverses the proxy, so its availability, the integrity of the assertions it re-issues, and the correctness of its trust configuration directly affect access to all downstream relying parties. In some deployments the proxy also collects credentials or home realm details from clients (as in an AD FS federation server proxy scenario), which places additional security expectations on the component.
It is worth being precise about scope: a federation proxy operates at the runtime authentication and federation layer. It bridges and mediates authentication assertions, but it does not itself perform identity governance functions such as provisioning, access certification, or segregation of duties, and authorization decisions at target applications remain out of scope of its bridging function unless a deployment explicitly configures it to participate. Treating the proxy as a governance or authorization control it was not designed to provide can create gaps in an identity architecture.
Who it's relevant to
Inside Federation Proxy
Common questions
Answers to the questions practitioners most commonly ask about Federation Proxy.