AWS, Google Cloud, Microsoft Azure, and Cloudflare have all introduced agent sandboxes, enabling isolated execution environments for code. Google Cloud recently made its Cloud Run sandboxes available in public preview, following AWS's release of its version. This signifies that all four major cloud providers now offer native primitives for isolated code execution.
Despite offering the same product shape—a platform to run untrusted code in isolation—each cloud provider has implemented its sandboxes using distinct architectural approaches. AWS utilizes Lambda MicroVMs built on Firecracker, providing dedicated virtual machines with suspend-resume capabilities. Google Cloud employs gVisor kernel interception for GKE Agent Sandbox and a lightweight isolated execution boundary within existing Cloud Run instances for its Cloud Run sandboxes.
Microsoft was an early adopter of this pattern, with Azure Container Apps dynamic sessions running on Hyper-V boundaries since 2024. Microsoft reported that Copilot alone uses over 400,000 of these sessions daily. Cloudflare built its Sandboxes on top of Containers, isolating each sandbox within its own VM and managing them through Workers and Durable Objects.
The Cloud Run sandbox is activated via a `--sandbox-launcher` flag during deployment, which mounts a sandbox binary within the container. Applications then call this binary through a subprocess. Google charges no additional fee for this feature, as sandboxes utilize the CPU and memory already allocated to the running instance. A demonstration showed a Cloud Run service starting, executing, and stopping 1,000 sandboxes in an average of 500 milliseconds each.
✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →
One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.
One email a day. Unsubscribe in one click, any time.
Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.
▶ Play today's briefNew every morning, and the back catalogue is archived by date.
AWS, Google Cloud, Microsoft Azure, and Cloudflare now all provide agent sandboxes for isolated code execution, with Google Cloud recently launching its Cloud Run sandboxes into public preview. This development means all four major cloud providers offer native isolated code execution, each utilizing different underlying isolation technologies and lifecycle models.