Subscribe to the Non-Human & AI Identity Journal

What do security teams get wrong about AI and zero trust?

They often treat zero trust as a one-time architecture choice instead of continuous verification. AI-driven workflows increase the number and pace of requests, so trust must be reassessed throughout the session, not only at sign-in.

Why This Matters for Security Teams

Security teams often misread zero trust as a perimeter replacement when the real issue is trust decay over time. AI-driven workflows create bursts of tool calls, API requests, and data lookups that can shift risk mid-session. That makes session start authentication only a partial control, not a complete decision. The practical challenge is continuous verification, especially when an agent can chain actions faster than a human reviewer can intervene.

NIST’s NIST SP 800-207 Zero Trust Architecture already frames trust as a dynamic decision, not a one-time grant. For NHI context, NHIMG’s Ultimate Guide to NHIs – Standards reinforces that identity, authorization, and telemetry must be evaluated together. The common failure is assuming that a signed-in workload remains equally trustworthy after it changes intent, scope, or downstream tool usage.

In practice, many security teams encounter overreach only after an AI workflow has already queried too much, moved too far, or touched data it never needed in the first place.

How It Works in Practice

Zero trust works best for AI when the control plane treats each request as a fresh decision. That means workload identity, policy evaluation, and secrets issuance must be tied to the task, not the session. The question is not merely “who signed in,” but “what is this agent trying to do right now, from which workload, with which downstream permissions.”

For autonomous or semi-autonomous systems, current guidance suggests combining continuous policy checks with short-lived credentials. A workload should present cryptographic identity, such as SPIFFE/SPIRE-based proof, then receive just-in-time access only for the exact action it needs. NHIMG’s Guide to SPIFFE and SPIRE is useful here because it maps workload identity to machine-verifiable trust rather than static account reuse.

  • Use workload identity to distinguish the agent from the host, container, or user that launched it.
  • Issue ephemeral secrets or scoped tokens per task, then revoke them automatically on completion or timeout.
  • Evaluate authorization at request time with policy-as-code so context, data sensitivity, and destination service all matter.
  • Log every tool call and downstream access so anomalous chaining can be detected before privilege expands.

This aligns with NIST SP 800-207 and the operational reality that AI agents may make many more decisions than human users in the same time window. These controls tend to break down when legacy applications only support long-lived service accounts because the agent cannot be constrained at the same pace as its actions.

Common Variations and Edge Cases

Tighter zero trust enforcement often increases latency, policy complexity, and integration overhead, so organisations must balance control depth against operational friction. That tradeoff is especially visible in AI pipelines that call many services in rapid succession. If every call requires a slow human approval path, the workflow becomes unusable; if everything is pre-approved for the session, the protection collapses.

There is no universal standard for this yet, but current guidance suggests separating human login trust from agent execution trust. A chatbot with read-only access is a different risk profile from an autonomous agent that can write tickets, trigger code, or rotate credentials. Best practice is evolving toward per-action authorization with bounded scope, rather than broad session tokens that remain valid after intent changes.

NHIMG’s research on The State of Non-Human Identity Security shows why this matters operationally: 85% of organisations lack full visibility into third-party vendors connected via OAuth apps, which is exactly the sort of blind spot that zero trust is meant to reduce. Teams also underestimate how quickly secrets sprawl when AI tooling is layered onto existing pipelines, a pattern echoed in the State of Secrets in AppSec.

These approaches become brittle in highly distributed environments with many third-party integrations, because trust decisions multiply faster than most policy teams can maintain them.

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 AG-03 Addresses insecure agent behavior and excessive tool access under dynamic conditions.
CSA MAESTRO IAM-2 Covers runtime identity and authorization for autonomous agent workflows.
NIST AI RMF AI RMF governs continuous monitoring and risk-based oversight of AI behavior.

Bind each agent action to workload identity and short-lived, task-scoped authorization.