Subscribe to the Non-Human & AI Identity Journal

How should security teams split responsibilities between an IdP and an upstream authenticator?

The IdP should remain the source of truth for lifecycle, group membership, application access, and audit. The upstream authenticator should own the ceremony, meaning the proof presented at login or verification time. That split prevents duplicated policy and makes it clear which control failed when access is challenged. It also keeps non-web channels from distorting the identity model.

Why This Matters for Security Teams

The split between an identity provider and an upstream authenticator is not just an architecture preference. It determines where lifecycle truth lives, where authentication evidence is produced, and where incident responders look first when access is disputed. If those responsibilities blur, teams end up re-implementing policy in multiple layers and lose the ability to tell whether a failure came from identity proofing, credential ceremony, or authorization.

That distinction matters even more for non-human identities, where the stakes are amplified by scale and automation. NHI Management Group notes that only 5.7% of organisations have full visibility into their service accounts in the Ultimate Guide to NHIs, which makes clean control boundaries essential. The IdP should remain the source of truth for lifecycle and access state, while the authenticator should only prove possession or presence at login time. Standards such as the NIST SP 800-63 Digital Identity Guidelines reinforce this separation by distinguishing identity proofing from authentication.

In practice, many security teams only discover the cost of a blurred split after an access dispute, a vendor integration failure, or a non-web channel has already been allowed to reshape the identity model.

How It Works in Practice

A clean operating model assigns different jobs to each layer. The IdP owns account creation, deactivation, group membership, application assignments, and audit trails. The upstream authenticator owns the ceremony that produces a trust signal, such as a password, passkey, device assertion, certificate, or federated proof. The IdP then consumes that signal and makes the policy decision about whether the subject should receive a token or session.

This model is easiest to sustain when teams treat the authenticator as evidence, not as the system of record. For human users, that may mean a phishing-resistant method presented to the IdP. For NHIs, it may mean a workload credential, service certificate, or short-lived token that proves the workload is what it claims to be. The identity lifecycle still belongs to the IdP, while the workload-facing mechanism remains separate and narrowly scoped. That separation aligns with the control logic described in the Ultimate Guide to NHIs, especially where rotation, offboarding, and visibility must be centrally governed.

  • Keep provisioning and deprovisioning in the IdP, not in the authenticator.
  • Use the authenticator to verify the current login or workload ceremony only.
  • Map application access, group membership, and audit events back to the IdP.
  • Prefer short-lived credentials and standard token lifetimes over persistent trust.

Implementation usually works best when the IdP emits signed assertions or tokens after a successful ceremony, and downstream apps trust those assertions rather than calling the authenticator directly. Current guidance suggests this reduces duplicated policy and improves revocation clarity. These controls tend to break down in legacy non-web environments where device posture, shared credentials, or direct-to-app certificates bypass the IdP entirely because the upstream authenticator becomes the de facto policy engine.

Common Variations and Edge Cases

Tighter separation often increases integration overhead, so organisations need to balance control clarity against operational complexity. That tradeoff becomes visible in environments that mix workforce login, API access, and autonomous workloads, because a single authenticator rarely serves all three cleanly.

One common edge case is step-up authentication. Best practice is evolving, but the IdP should still own the policy that decides when step-up is required, while the authenticator merely performs the stronger ceremony. Another is federation, where an external IdP may act as the upstream trust source. In that case, the relying IdP still needs to retain lifecycle and authorization authority locally rather than outsourcing governance to the partner.

For machine identities, the same principle applies even when the proof is a certificate or OIDC token. The authenticator may validate workload possession, but it should not determine whether the workload is entitled to a service. That distinction becomes critical when organisations use multiple auth paths, because channel-specific logic can fragment audit, obscure revocation, and create inconsistent access outcomes. Where channels are heavily customized or embedded in devices, the split often becomes fuzzy because the authenticator and the IdP are both forced to compensate for missing lifecycle controls.

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Non-Human Identity Top 10 and OWASP Agentic AI Top 10 address the attack and risk surface, while NIST AI RMF set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Non-Human Identity Top 10 NHI-01 Separating lifecycle truth from authentication ceremony is core NHI governance.
OWASP Agentic AI Top 10 A-04 Autonomous workloads rely on clean identity boundaries and runtime trust decisions.
NIST AI RMF AI governance emphasizes clear accountability for identity and access decisions.

Keep NHI ownership, rotation, and offboarding in the IdP and limit authenticators to proof at login.