Federated Credential
A federated credential is a way for one identity system to trust the authentication performed by another, so a user or software workload can gain access without a separate password or secret stored in the target system. Instead of managing its own login secret, the target relies on a trusted external identity provider to vouch for who is asking. This approach is often described as more secure and manageable because it removes the need to store and rotate long-lived secrets that could be leaked.
A federated credential establishes a trust relationship in which a resource or application accepts an identity assertion issued by an external, trusted identity provider rather than validating a locally held secret. In Microsoft Entra, federated identity credentials are described as a credential type that enables workload identity federation for software workloads, allowing a workload to obtain access using an externally issued token rather than a stored client secret or certificate. Note that the specific token formats, validation semantics, and trust configuration vary by platform and deployment; the evidence provided does not specify the underlying protocols or token structures, so those details are out of scope here. Conceptually this is a federation and authentication-trust mechanism, distinct from authorization decisions made once the federated identity is established.
Why it matters
The dominant risk that federated credentials address is the proliferation of long-lived secrets. When an application or workload authenticates using a stored client secret or certificate, that secret must be created, distributed, protected, rotated, and eventually revoked. Each of these steps is an opportunity for exposure, and a leaked secret can grant an attacker persistent access until someone notices and rotates it. By having a resource trust an assertion issued by an external identity provider rather than validating a locally held secret, a federated credential removes the need to store that long-lived secret in the target system at all.
This matters most acutely for machine-to-machine and workload scenarios. Sources describing Microsoft Entra workload identity federation frame federated identity credentials as a mechanism for software workloads to obtain access using an externally issued token instead of a stored secret, and one cited source specifically calls federated identity a more secure, scalable, and manageable authentication method for CI/CD pipelines such as Azure DevOps, noting that it removes the risk of leaked credentials. For teams operating many pipelines, service connections, or app registrations, eliminating hardcoded secrets reduces both attack surface and operational burden.
It is worth keeping the scope precise: a federated credential is an authentication-trust mechanism, establishing that the target will accept an assertion from a trusted external provider about who is asking. It does not by itself determine what the federated identity may do; authorization decisions are made separately once the identity is established. The evidence provided does not specify the underlying protocols, token formats, or validation semantics, and those vary by platform and deployment.
Who it's relevant to
Inside FIC
Common questions
Answers to the questions practitioners most commonly ask about FIC.
