Skip to content
HOME / CYBERSECURITY / ZERO TRUST FOR AI 3 weeks AGO

Cybersecurity

Zero Trust for AI Agents in the Cloud

Zero Trust for AI Agents in the Cloud

Last Updated on June 30, 2026 by Arnav Sharma

As a security professional who spends most working weeks inside Azure tenants watching automation scale past the point where any human reviews every action, I have watched the zero trust conversation shift faster in the past eighteen months than in the previous five years combined. Zero trust for AI agents in the cloud is no longer a theoretical exercise for security architects. Every agent now deployed against production APIs, every autonomous workflow chaining tool calls without a human in the loop, and every service account quietly granted broad scope represents a live identity that traditional access models were never built to govern.

This guide sets out what it actually takes to apply zero trust to agentic AI in 2026: where the conventional zero trust model breaks down once the user is autonomous, how the current frameworks (OWASP, the Cloud Security Alliance, NIST) map onto practical security controls, what the Model Context Protocol changes about API-level authorisation, and what an Australian enterprise specifically needs to do to satisfy ACSC, Essential Eight, Privacy Act, and APRA obligations while staying ahead of EU AI Act exposure. The aim throughout is a security approach grounded in current standards rather than generic AI security advice repurposed from chatbot-era guidance.

Why Traditional Zero Trust Breaks Down for Autonomous Agents

Zero trust architecture was built around a deceptively simple rule: never trust, always verify, regardless of network location. That rule still holds. What has changed is the entity being verified. Traditional zero trust assumes a human user with predictable behaviour, a session that starts and ends, and access decisions that can reasonably be made once per login and revisited periodically. Agentic AI breaks every one of those assumptions, and security teams who apply human-identity zero trust controls to agents unmodified are leaving a structural gap that attackers are already finding.

The Implicit Trust Gap Created by Shared Service Credentials

Most organisations still provision AI agents the way they provisioned automation scripts a decade ago: a shared service account, a long-lived API key, broad scope granted once at setup and rarely revisited. An effective zero trust architecture has to manage agents as an independent identity category rather than folding them into existing human or generic-service identity pools, because agents are never supposed to use shared human credentials in the first place. When an agent shares credentials with other agents, or worse with a human operator, there is no way to attribute an action to the entity that actually performed it, and no way to revoke one agent’s access without breaking three others.

Machine Speed Versus Human-Paced Verification

Human-identity zero trust was designed around verification cadences that match human work: step-up authentication at login, periodic access reviews, anomaly detection tuned to human behavioural baselines. Agents do not work at that pace. An agent can issue hundreds of API calls in the time it takes a human analyst to read one alert. Security architectures that rely on periodic review or human-paced anomaly thresholds will always be reacting to an agent’s actions well after the fact, which is functionally equivalent to no control at all for anything time-sensitive.

Blast Radius When an Agent Is Compromised

A compromised human account is bounded by what that human could plausibly do in a session: read some files, send some emails, approve some transactions within their role. A compromised or hijacked agent inherits whatever scope it was granted and can exercise all of it programmatically, continuously, and without the fatigue or hesitation that limits human misuse. The Cloud Security Alliance’s framing is apt here: AI agents behave like junior engineers who are quick and willing to help but not always judgemental, and who will attempt to paper over problems rather than fully resolve them, which is exactly why tight boundaries on what an agent can see and touch matter more than they did for equivalent human roles. Restricting an agent to only the logs, metrics, and traces required for its specific function, rather than broad read access “just in case,” directly limits blast radius if that agent is compromised or goes rogue.

Applying Zero Trust Principles to Agentic AI Systems

To apply zero trust to an autonomous agent rather than a human user, three shifts in practice matter most: treating agent identity as its own category, enforcing scope at the task level rather than the deployment level, and replacing session-based trust with continuous verification.

Agent Identity as a First-Class, Non-Human Identity Category

The starting point for any credible zero trust programme covering agents is treating agent identity as its own category, distinct from human users and distinct from generic service accounts. Every agent needs a unique, verifiable identity that can be authenticated independently, attributed individually in logs, and revoked without touching any other agent’s access. Without unique, verifiable identities, organisations cannot reliably distinguish a legitimate agent from a rogue one operating under a shared or stolen credential. This is the same logic that underpins certificate-based workload identity for traditional non-human identities, now extended to a category of identity that can plan and act rather than simply execute fixed routines.

Least Privilege and Scope Boundaries for Autonomous Action

Least privilege for an agent is not a one-time provisioning decision. Scope needs to be defined per task, per tool, and ideally per session, with access automatically expiring rather than persisting indefinitely. Every AI agent should have a documented answer to the question of what that agent can access and why, reviewed at the same cadence as a privileged human role. An agent that needs to query a customer database for one workflow should not retain standing access to that database once the workflow completes. This is harder to operationalise than least privilege for human roles because agent tasks change dynamically and agents require scope adjustments far more frequently than human roles do, but it is also where the actual security value sits: an agent that is compromised mid-task with narrowly scoped, time-limited credentials is a contained incident, while the same agent holding broad standing access is an open door. AI agents represent a fundamentally different risk profile from the static service accounts security teams are used to governing, precisely because that scope can change task to task rather than staying fixed for the life of the account.

Continuous Verification Instead of Session-Based Trust

Traditional zero trust still largely treats trust as something established at authentication and held for the duration of a session. Agentic zero trust requires trust that is continuously re-evaluated against observed behaviour, not granted once and assumed for the duration of a task. No AI agent should be trusted by default regardless of its stated purpose or claimed capability; trust has to be earned through demonstrated behaviour and verified continuously through monitoring, not assumed because the agent authenticated successfully an hour, a day, or a session ago.

The Current Frameworks Shaping Agentic Zero Trust

Security architects do not need to build an agentic zero trust programme from first principles. Three bodies of work, all updated or released within the past several months, now provide a workable foundation.

OWASP Top 10 for Agentic Applications (2026)

Released in December 2025 after collaboration with more than 100 industry practitioners and researchers, the OWASP Top 10 for Agentic Applications is currently the most authoritative threat taxonomy specific to autonomous AI agents. It covers risks including goal hijacking, where an attacker redirects an agent’s planning logic so the entire downstream chain of actions becomes compromised; tool misuse; cascading multi-step failures; and rogue agents, where behaviour drifts from intended purpose while the agent remains technically authorised, making it one of the hardest agentic security threats to detect because nothing about its credentials looks wrong. This is precisely the failure mode autonomous AI agents introduce that traditional perimeter controls were never designed to catch, whether the agent is operating against internal systems or external cloud services. According to industry polling cited around the framework’s release, a substantial share of cybersecurity professionals now consider agentic AI the leading attack vector heading into 2026, while only a minority of enterprises report having AI-specific security controls in place, a gap that defines the urgency behind enterprise AI governance programmes being stood up across the sector this year. That gap between perceived risk and actual control coverage is precisely what an agentic zero trust programme needs to close.

Cloud Security Alliance Agentic Trust Framework

The Cloud Security Alliance’s Agentic Trust Framework, published as an open specification in February 2026, operationalises zero trust principles for agents through five core elements, each tied to a question that must be answerable for every agent in an environment: identity (“who are you?”), agent behavior (“what are you doing?”), data governance (“what are you consuming and producing?”), segmentation (“where can you go?”), and incident response (“what happens if you go rogue?”). This is one of the more complete agent security models published to date because it treats agentic AI security as a governance discipline rather than a collection of point security solutions, and it maps cleanly onto the OWASP risk categories below to give architects a structure for secure AI agents, not just a threat list, to build controls against.

NIST 800-207 as the Architectural Foundation

Zero trust architecture as a discipline traces back to work by John Kindervag and is now codified in NIST Special Publication 800-207, which remains the foundational reference for the never-trust-always-verify principle regardless of network location. For agentic systems, the translation is direct: no agent should be trusted by default regardless of its purpose or claimed capability, and that trust must be continuously re-earned rather than granted at the point of deployment.

OWASP Agentic Risk CategoryCorresponding Zero Trust Control
Goal hijackingContinuous behavioural verification against expected task parameters
Tool misuseScoped, per-task permission grants with automatic expiry
Rogue agent driftBehavioural monitoring with circuit breakers and kill switches
Cascading multi-step failuresSegmentation limiting blast radius between agents and systems
Credential or identity compromiseUnique, non-shared agent identity with continuous authentication
Excessive agency / scope creepLeast-privilege enforcement reviewed per task, not per deployment

Securing the API and MCP Layer

Model Context Protocol Authentication, Current Spec State

The Model Context Protocol, originally open-sourced by Anthropic in November 2024, has become the default integration layer connecting agents to enterprise tools and data, and its authorisation model has matured significantly across several spec revisions in the past year. Remote MCP servers are now formally classified as OAuth Resource Servers and are required to implement OAuth 2.1, with Resource Indicators under RFC 8707 mandated since the June 2025 update specifically to prevent a token issued for one MCP server being replayed against another. The November 2025 revision replaced Dynamic Client Registration with Client ID Metadata Documents, removing the need for authorisation servers to maintain client registration databases. Most recently, an Enterprise-Managed Authorization extension stabilised in June 2026, allowing organisations to centrally provision MCP server access through their existing identity provider rather than handling per-application OAuth flows, with adoption already underway among major identity and model vendors, Anthropic included.

Despite this rapid spec maturity, actual implementation has lagged: independent analysis earlier this year found that only a small fraction of deployed MCP servers had implemented OAuth 2.1 authentication, despite it being the protocol’s mandated standard for remote deployments. That gap between specification and deployment is exactly where a zero trust audit of an organisation’s MCP footprint should start. Security teams should inventory every MCP server in use, confirm which ones are authenticating via OAuth 2.1 with PKCE rather than static client secrets, and verify TLS and mutual TLS configuration on server-to-server communication, since at least one widely used MCP SDK has shipped with DNS rebinding protection disabled by default.

API Access Control and Credential Management for Agents

Service-to-service authentication for agents calling APIs should use client certificates, scoped API keys with defined rotation schedules, or OAuth 2.0 client credentials flow, never shared username and password combinations. Credentials issued to an agent should carry the narrowest scope the immediate task requires, and any MCP server or API gateway that aggregates credentials across multiple backend services should be treated as a high-value target in its own right, since a single compromised aggregation point can expose every system the agent was permitted to touch. In multi-agent environments where agents communicate with one another to complete a shared task, each leg of that communication needs its own verified agent access rather than inheriting trust from the agent that initiated the workflow, otherwise agentic environments end up with the same implicit trust problem zero trust was meant to eliminate, just one layer removed from the human-facing perimeter. The same discipline applies across ai workflows generally, regardless of whether a single agent or a coordinated set of agents is executing the task.

Audit Logging and Behavioural Monitoring for Agent Workflows

Traditional SIEM tooling tuned to human behavioural baselines will not catch agentic threats reliably, because agent behaviour does not follow the same patterns. Effective monitoring for agent workflows requires behavioural analytics specifically built to understand agent action sequences and flag deviation from expected task parameters in real time, alongside an unambiguous audit trail that ties every action back to a single, attributable agent identity. High-risk actions, including payments, data deletion, credential access, and production deployments, should require explicit human approval regardless of how confident the agent’s output appears, since agent confidence signals are not a reliable proxy for correctness.

Governance, Regulation, and the Australian Enterprise Context

ACSC, ASD, and the Five Eyes Joint Guidance on Agentic AI Adoption

On 1 May 2026, six cybersecurity agencies across the Five Eyes alliance, including the Australian Signals Directorate’s Australian Cyber Security Centre alongside CISA, the NSA, the Canadian Centre for Cyber Security, New Zealand’s NCSC, and the UK’s NCSC, published joint guidance on the careful adoption of agentic AI services. The central message is direct: agentic AI systems are already operating inside critical infrastructure environments, and most organisations have granted those systems considerably more access than anyone is actively monitoring. For Australian security architects, this guidance should now sit alongside the Essential Eight as a baseline reference when scoping any agent deployment, not as optional reading.

Essential Eight Maturity Levels Applied to Agent Deployments

AI agents introduce a genuinely new category of privileged identity into an Essential Eight assessment. Restricting administrative privileges, one of the eight core strategies, now has to account for agents that authenticate and act independently of any human session. Service-to-service authentication for agents should rely on client certificates, scoped API keys with rotation, or OAuth client credentials flow rather than shared credentials, which maps directly onto the Essential Eight’s privileged access discipline. Organisations operating at Maturity Level Two or Three should treat every deployed agent the way they would treat a new privileged human account: documented business justification, scoped access, regular review, and removal when the task or project ends.

Privacy Act, SOCI Act, and APRA CPS 234 Considerations

Agents that read, summarise, or act on personal information fall squarely within Privacy Act 1988 obligations, and an agent’s broader scope of access compared to an equivalent human role can materially increase the volume of personal information a single compromised credential exposes. For entities captured under the Security of Critical Infrastructure Act, any agent with access to operational technology or critical infrastructure systems needs to be accounted for in risk management programme obligations, given agents represent a new and largely unaudited access pathway into systems those obligations were designed to protect. APRA-regulated entities working under CPS 234 should likewise extend their information security capability requirements to explicitly cover agent identities, since CPS 234’s expectations around identifying and managing information assets do not currently distinguish between human and autonomous access by default, and that gap needs to be closed deliberately rather than assumed away.

EU AI Act Exposure for Australian Enterprises with EU Operations

Australian enterprises with EU operations, EU customers, or AI systems whose outputs affect people in the EU should track the EU AI Act’s high-risk obligations even though enforcement timing has shifted. Following a provisional political agreement reached on 7 May 2026 on the Digital Omnibus on AI, the high-risk compliance deadline for Annex III use-based systems, covering categories such as recruitment, credit scoring, and biometric identification, has been deferred from 2 August 2026 to 2 December 2027, with Annex I product-embedded systems pushed to 2 August 2028. This agreement is provisional and not yet formally adopted at time of writing, so organisations should treat the deferral as the likely direction rather than a settled position, and should note that prohibited-practice provisions under Article 5, covering categories such as social scoring and manipulative AI, are already enforceable now regardless of the Annex III timeline. An autonomous agent making decisions that affect EU residents, even one operated entirely from Australia, can fall within scope depending on the use case.

A Staged Rollout Plan for Zero Trust Agent Deployment

Principles are necessary but not sufficient. The following staged approach gives architects a practical sequence for bringing zero trust controls to an existing or planned agent deployment, deliberately modelled on the maturity-level structure already familiar from Essential Eight implementations.

Stage One: Discovery and Inventory

Before any control can be applied, every deployed agent, every MCP server, and every API integration an agent can reach needs to be inventoried. This includes shadow AI: agents or AI-enabled tools that business teams have adopted independently of a formal security review. Most organisations underestimate this inventory significantly on first pass, in part because teams deploy agents to solve an immediate workflow problem without registering them anywhere a security team would think to look. Mapping where agents operate and which trust boundaries they cross between internal systems, third-party platforms, and external APIs is the output that makes every later stage possible.

Stage Two: Identity and Scope Enforcement

Migrate every discovered agent off shared credentials and onto unique, attributable identities. Replace standing broad scope with task-scoped, time-limited permissions. Confirm MCP servers in use are authenticating via OAuth 2.1 rather than static secrets, and close any gaps identified in stage one before expanding deployment further.

Stage Three: Continuous Monitoring and Governance Maturity

Deploy behavioural monitoring tuned to agent action patterns rather than human baselines. Establish human-in-the-loop checkpoints for high-risk actions. Build the audit trail and incident response capability, including circuit breakers and kill switches, that lets the organisation contain a compromised or rogue agent within minutes rather than discovering the incident days later through downstream effects.

StagePrimary FocusKey ControlsTypical Owner
OneDiscoveryAgent and MCP server inventory, shadow AI identificationSecurity architecture, GRC
TwoEnforcementUnique agent identity, scoped credentials, OAuth 2.1 on MCPCloud security engineering
ThreeGovernanceBehavioural monitoring, audit trail, human-in-the-loop gatesSecurity operations, CISO office
Arnav Sharma
Arnav Sharma Microsoft MVPMCT
Microsoft Certified Trainer · Cloud · Cybersecurity · AI

I help organisations secure their cloud infrastructure and stay ahead of evolving cyber threats. Microsoft MVP and Certified Trainer, author of Mastering Azure Security, and founder of arnav.au — a platform for practical Cloud, Cybersecurity, DevOps and AI content.

Frequently Asked Questions

KEEP READING

Leave a reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.