By NHI Mgmt Group Editorial TeamDomain: Agentic AI & NHIsSource: AkeylessPublished September 11, 2026

TL;DR: AI agents cannot be governed reliably through a universal identity directory because they are ephemeral, non-enumerable, and runtime-issued, according to Akeyless. The article’s deeper point is that static RBAC and ABAC fail when the actor can change actions mid-session, making intent-aware enforcement the new control boundary.


At a glance

What this is: This is an independent analysis of why AI agent identity should be anchored in runtime workload identity rather than a synthetic directory for agents.

Why it matters: It matters because IAM, PAM, and NHI programmes must govern transient agent actions without assuming stable identities, static scopes, or human-paced review cycles.

By the numbers:

👉 Read Akeyless' analysis of AI agent identity and workload enforcement


Context

AI agent identity is a governance problem, not just an architecture question. The article argues that agents cannot be managed safely as if they were human users with stable records in a directory, because their runtime presence is transient, their actions are non-deterministic, and the control point has to sit where the workload actually authenticates.

That distinction matters for IAM, NHI, and PAM programmes because existing identity models assume the subject can be enumerated, certified, and offboarded on a predictable lifecycle. For agents, the more realistic anchor is the runtime-issued workload identity and the enforcement path that mediates each action, which is a closer fit to workload identity governance than to workforce directory management.

This is a direct challenge to IdP-centric thinking, and it is typical of production agent deployments rather than an edge case.


Key questions

Q: What breaks when AI agents are managed like ordinary machine identities?

A: What breaks is the assumption that access scope can be fully understood from provisioning data and quarterly review. Ordinary machine identities are repeatable; agents are not. If teams only review entitlements, they miss context shifts, delegated actions, and credential creation inside the session.

Q: Why do traditional RBAC and ABAC controls fall short for AI agents?

A: They usually assume one stable identity making one request at a time. Agent workflows can span tools, sub-agents, and long-running tasks, so the original intent can drift while the identity remains valid. That makes static entitlements too blunt unless they are paired with delegation-aware policy and expiry.

Q: How can security teams govern AI agents without a directory for every agent instance?

A: They should govern the runtime, not the instance. Use workload identity, attestation, and brokered access rules that bind authorised Auth Methods to target systems. That approach covers future agent instances automatically and avoids building a brittle inventory of short-lived identities that cannot be trusted as a protection layer.

Q: Should organisations treat AI as an application or as an identity?

A: Treat it as an identity when the AI can access data, invoke tools, or participate in workflows that affect business systems. That framing makes least privilege, just-in-time access, and lifecycle governance relevant. If you keep treating it only as an application, you will miss the access and delegation behaviours that actually create risk.


Technical breakdown

Why agent identity is not enumerable

The article’s core technical claim is that many AI agents do not exist long enough to be treated as durable identity records. An agent may run in a serverless function, a container, or a Kubernetes pod, and then disappear before discovery or registration completes. That means the identifier is not the agent instance itself but the workload substrate that attests it. In practice, the stable control point is the Auth Method or runtime trust source, not a directory entry for the ephemeral agent.

Practical implication: Design identity policy around runtime attestation sources, not around a catalog of individual agent instances.

Workload identity is the real anchor for access

The article maps AI agent identity to familiar workload primitives such as AWS STS, Kubernetes service account tokens, OIDC federation, and SPIFFE/SPIRE. These mechanisms already issue short-lived, cryptographically verifiable identities to workloads, which is why they fit agents better than human-style enrollment. The key architectural shift is that authorization binds the attested runtime to a target system, so the policy applies to any future agent instance that matches the Auth Method.

Practical implication: Treat workload identity issuance as the control boundary and avoid inventing a separate agent directory for transient runtimes.

Why static RBAC and ABAC stop short

RBAC and ABAC still matter, but the article shows why they cannot contain a non-deterministic actor by themselves. An agent can be prompt-injected, change task direction mid-session, or chain legitimate tool calls into an unintended outcome. Static permissioning can decide whether the agent may start, but it cannot reliably judge what the agent decides to do after authentication. That gap is why the article places intent-aware enforcement at a gateway between the agent and the target system.

Practical implication: Add action-level policy enforcement to every sensitive agent transaction instead of relying on session-start authorisation alone.


NHI Mgmt Group analysis

AI agent identity is collapsing the directory-first assumption that IAM inherited from human users. Directory models assume the identity exists long enough to be enrolled, assigned, and reviewed. That assumption fails when an agent can be born, act, and vanish inside a single runtime window. The implication is that identity governance must stop treating enumeration as the starting point for protection.

Workload issuance is the only durable identity primitive for autonomous access. The article correctly shifts focus to the platform that attests the workload, because that is where the trust chain actually begins. This is consistent with workload identity thinking in OWASP-NHI and Zero Trust patterns, where access is mediated by attestation rather than by a synthetic human-style record. Practitioners should treat the runtime as the identity source of record.

Static privilege models were designed for predictable subjects, not non-deterministic actors. RBAC and ABAC can constrain baseline access, but they cannot fully represent an agent whose next tool call is decided at runtime. The policy failure is not merely missing control depth; it is a mismatch between permission design and actor behaviour. Security teams need to understand that access scope is not the same as action scope.

Intent-aware enforcement is becoming the missing middle in agent governance. The article points to a control layer that evaluates what the agent says it will do versus what it actually attempts, at the moment of action. That is a different problem from identity proofing or lifecycle management. The practical conclusion is that governance has to move closer to the wire if agents are allowed to act on enterprise systems.

Agent governance will converge with NHI governance faster than vendor narratives suggest. The article shows that the same short-lived, brokered, zero-standing-privilege principles already used for service accounts and other workloads are the right baseline for agents. The new requirement is not a new identity category, but stronger runtime enforcement over existing non-human access paths. Practitioners should expect agent programmes to inherit NHI controls before they invent a separate operating model.

From our research:

  • 97% of NHIs carry excessive privileges, increasing unauthorised access and broadening the attack surface, according to Ultimate Guide to NHIs.
  • 71% of NHIs are not rotated within recommended time frames, increasing the risk of compromise over time.
  • 52 NHI Breaches Analysis shows how privilege persistence turns temporary exposure into repeatable compromise patterns.

What this signals

Workload-issued identity will keep displacing directory-first thinking in agent programmes. Once teams accept that an agent may only exist for milliseconds, the governance model has to move to attestation, brokered access, and action-level checks. That shift is consistent with the direction of Zero Trust and workload identity practice, and it is already visible in production agent designs.

Ephemeral access changes the meaning of review and offboarding. Access review cycles built for stable identities will increasingly miss the window in which an agent actually acts, so control owners should watch for governance processes that assume a durable artefact will still exist at certification time. The practical challenge is not discovering the agent after the fact, but constraining the action before it becomes executable.

The most useful operational benchmark will be whether your identity stack can enforce policy at the point of action without creating a new standing secret. If it cannot, the programme is still treating agents like users instead of workloads.


For practitioners

  • Anchor agent access in runtime attestation Use cloud IAM, Kubernetes service accounts, OIDC federation, or SPIFFE/SPIRE as the identity source of record for agent execution. Do not require a separate directory entry before access is governed.
  • Bind authorisation to Auth Methods and target systems Define policy around which attested runtimes may reach which systems, rather than assigning long-lived scopes to named agent identities. This keeps new agent instances covered automatically.
  • Move sensitive actions behind a gateway Require every agent action against enterprise systems to traverse an enforcement point that can inspect intent, prompt context, target object, and session history before issuing credentials.
  • Remove credentials from the agent itself Broker short-lived credentials at the gateway and inject them only for the allowed session. That way, a compromised or prompt-injected agent has no reusable secret to exfiltrate.
  • Revisit lifecycle assumptions for non-human access Review whether your offboarding, recertification, and review processes assume a stable identity record. If they do, adapt them for transient workloads that may never exist long enough for a traditional review cycle.

Key takeaways

  • AI agents cannot be governed reliably through human-style identity directories because their runtime identity is transient and non-enumerable.
  • The durable control point is workload-issued identity, with policy bound to attestation, target systems, and action-time enforcement.
  • Static permissioning is necessary but insufficient, because the real governance gap is the space between authorised access and intended action.

Standards & Framework Alignment

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

OWASP Agentic AI Top 10 and OWASP Non-Human Identity Top 10 address the attack and risk surface, while NIST Zero Trust (SP 800-207), NIST AI RMF and NIST CSF 2.0 set the governance and control requirements practitioners need to meet.

FrameworkControl / ReferenceRelevance
OWASP Agentic AI Top 10Agent identity and tool misuseThe article centers on AI agent identity, runtime action control, and tool-mediated access.
Recommendation — Model AI agents as runtime-governed actors and enforce policy at the point of action.
OWASP Non-Human Identity Top 10NHI-01 — Identity Inventory and OwnershipThe article rejects directory-first inventory as the primary protection model for ephemeral agents.
NHI-03 — Authentication and Credential LifecycleShort-lived, runtime-issued credentials are central to the access model described here.
Recommendation — Inventory workload identities and ownership sources rather than building a synthetic agent directory. Use short-lived credentials and runtime attestation to avoid standing secrets for agents.
NIST Zero Trust (SP 800-207)3.4 — Policy Engine and Enforcement PointGateway-enforced, per-action checks align with Zero Trust policy enforcement.
Recommendation — Place enforcement at the gateway so every sensitive agent action is evaluated before execution.
NIST AI RMFGOVERN — AI Governance and AccountabilityThe article argues for accountable governance over autonomous agent access decisions.
Recommendation — Establish clear ownership for agent governance and action-level approval boundaries.
NIST CSF 2.0PR.AC-4 — Access Permissions and AuthorisationsThe post focuses on access permissions that must adapt to non-deterministic agents.
Recommendation — Apply PR.AC-4 to bind authorisation to runtime claims and target systems.

Key terms

  • Authentication Method: An authentication method is the mechanism used to prove the identity of a human user or workload before access is granted. In secrets platforms, it can include API keys, federated identity, or other trusted mechanisms, and it forms the first gate before authorisation decisions are applied.
  • Workload Identity: The identity assigned to a software workload — such as a containerised application, serverless function, or microservice — enabling it to authenticate to other services without storing static credentials.
  • Intent-Based Enforcement: Intent-based enforcement evaluates what a user or agent is trying to do, not only what words or files are present. In AI environments, that makes it possible to block, redact, warn, or route a request based on context, identity, and policy before sensitive data leaves the session.
  • Short-Lived Agent Credential: A time-bounded identity token or access grant used by an AI workflow for a specific task or session. For agent governance, short-lived access reduces standing privilege risk and aligns the identity lifespan with the work actually being performed.

What's in the full article

Akeyless' full post covers the operational detail this post intentionally leaves for the source:

  • Specific examples of how Auth Methods are defined for AWS, Kubernetes, OIDC, and SPIFFE-backed workloads
  • The gateway enforcement model for inspecting agent actions against declared intent before credentials are issued
  • The control flow for short-lived credential brokering and session-level containment
  • The architecture comparison between synthetic agent directories and workload-anchored identity governance

👉 The full Akeyless post covers the directory fallacy, workload issuance, and action-level enforcement in more detail.

Deepen your knowledge

NHI governance, agentic AI identity, and machine identity security are core topics in our NHI Foundation Level course, the industry's only accredited NHI security programme. If you are responsible for identity security strategy or NHI governance in your organisation, it is worth exploring.
NHIMG Editorial Note
Published by the NHIMG editorial team on September 14, 2026.
NHI Mgmt Group — the independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org