Subscribe to the Non-Human & AI Identity Journal

What should IAM teams review first when agents start touching production systems?

Start with the identities the agents inherit, the credentials they can retain, and the systems they can call without approval. Those three areas reveal whether the environment is still running on service-account assumptions. If the answers are vague, policy enforcement and attribution will both fail under pressure.

Why This Matters for Security Teams

When agents start touching production, IAM teams are no longer reviewing a normal workload. They are reviewing an autonomous actor that can chain tools, repeat actions, and preserve access beyond the moment a human expected. Static service-account assumptions break quickly because the agent’s next call is driven by runtime context, not a fixed job description. That is why the first review should focus on identity inheritance, credential retention, and unsupervised system reach.

Industry guidance increasingly points in the same direction. The OWASP Agentic AI Top 10 and NIST AI Risk Management Framework both stress that AI systems need context-aware controls, not just perimeter approvals. NHIMG’s Ultimate Guide to NHIs notes that 97% of NHIs carry excessive privileges and only 5.7% of organisations have full visibility into their service accounts. In practice, many security teams discover agent overreach only after a production incident has already turned access review into an investigation.

How It Works in Practice

The first pass should map the agent’s real operating path, not just its nominal owner. Start by identifying what human or service principal it inherits from, whether it can obtain additional tokens mid-task, and which systems it can call without a second approval step. If those answers are unclear, the environment is still relying on broad service-account trust rather than workload identity.

For agents, the useful identity primitive is workload identity: cryptographic proof of what the agent is, not a static credential stored somewhere for later reuse. In practice, that means checking whether access is tied to short-lived tokens, whether secrets are issued just in time, and whether they are revoked automatically when the task ends. The operational goal is to move from standing access to per-task access. That aligns with the direction of CSA MAESTRO agentic AI threat modeling framework and the runtime-policy emphasis in the MITRE ATLAS adversarial AI threat matrix.

  • Inventory inherited identities, including service accounts, workload tokens, and delegated human privileges.
  • Check token TTLs and rotation paths. Long-lived secrets make agent behaviour harder to contain and harder to attribute.
  • Review whether the agent can self-authorize follow-on actions, especially tool calls that reach production data, deploy paths, or secrets stores.
  • Confirm whether policy is evaluated at request time with full context, rather than pre-approved by role alone.

NHIMG research also shows why this matters: the 2024 Non-Human Identity Security Report found that only 19.6% of security professionals are strongly confident in managing non-human workload identities, while 59.8% see value in dynamic ephemeral credentials. These controls tend to break down when agents are allowed to reuse long-lived tokens across multiple production hops because the trust boundary becomes invisible.

Common Variations and Edge Cases

Tighter agent controls often increase operational overhead, so teams have to balance speed against blast-radius reduction. That tradeoff is real, especially when agents support incident response, customer support, or release automation where delays have visible business impact.

Best practice is evolving, but current guidance suggests a few common patterns. For read-only agents, narrow scopes and short TTLs may be sufficient if the agent cannot trigger side effects. For write-capable agents, especially those that can create tickets, move data, or change infrastructure, IAM teams should require runtime policy checks and explicit approval for privileged transitions. The problem is not just access volume; it is unpredictable decision chains. Once an agent can call one tool, it may discover another path to the same objective.

That is why the first review should also test edge conditions: can the agent retain a token after a task ends, can it refresh credentials without a human, and can it pivot into adjacent systems through shared secrets or broad network reach. NHIMG’s Moltbook AI agent keys breach and AI LLM hijack breach both underscore how quickly agentic access can become an exploitation path when controls are built for static workloads rather than autonomous ones.

In short, the first review is not about whether the agent has an identity. It is about whether that identity is bounded tightly enough that a single mistaken action cannot become a production-wide trust failure.

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 CSA MAESTRO 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 Agentic AI Top 10 A1 Agentic systems need runtime controls, not static service-account trust.
CSA MAESTRO MAESTRO frames how to model agent workflows and privilege transitions.
NIST AI RMF GOVERN AI RMF GOVERN applies to ownership, accountability, and policy for autonomous agents.

Map each agent action to its privilege step and remove any standing access that is not essential.