Cloud Workload Segmentation

Cloud workload segmentation is a security practice that controls traffic between individual workloads inside a cloud network, such as a VPC or VNet. It sets policy at the workload level, so if one workload is compromised, the attacker can't freely reach the others around it. When that policy gets granular enough to isolate single workloads or processes, people call it cloud workload microsegmentation.

What’s the difference between north-south and east-west traffic in the cloud?

Cloud security often splits traffic into two directions. North-south traffic moves in and out of the cloud environment at its edge. East-west traffic moves sideways, between workloads inside the same network.

Native cloud controls handle north-south well. AWS Security Groups and Azure network security groups (NSGs) decide what can reach a workload from outside. But they do much less to police the east-west paths inside a VPC or VNet. Workloads on the same subnet can often talk to each other freely, whatever the perimeter rules say.

That east-west gap matters because most attacks don't stop at the first machine. An attacker who lands on one workload looks for a way to reach the next one, and the one after that. Security teams call this lateral movement. Ransomware behaves the same way, spreading from host to host once it's inside. Cloud workload segmentation is a form of lateral movement prevention in the cloud, and it's central to containing ransomware's lateral movement: it caps how far an infection can travel.

Why aren't AWS Security Groups and Azure NSGs enough to stop lateral movement?

Security groups and NSGs are access controls. They decide what can connect to a workload. That's a useful job, but it's a different job from containing a breach once an attacker is already inside.

Here's the gap in practical terms. Native controls don't enforce between instances or subnets at scale inside the VPC, so two workloads on the same subnet can usually reach each other with no restriction. They don't unify across clouds, either. AWS, Azure, and GCP each have their own control plane, rule syntax, and console, so a team running all three ends up juggling several policy models at once. And they give you no safe way to test a rule's impact before it goes live. You find out what a change breaks after you ship it.

Lift-and-shift migrations make this worse. When teams move applications straight from the data center into the cloud, old east-west connections come along for the ride. Nobody re-checks them, and they sit open by default.

The answer is segmentation inside the VPC itself. This VPC internal segmentation goes beyond security groups, adding control at the workload level. It gives you cloud breach containment: once an attacker is in, the policy limits where they can travel.

Is cloud workload segmentation the same as a cloud firewall?

No. A cloud firewall, like a security group or NSG, is a perimeter access control that decides what can reach a workload from outside. Cloud workload segmentation adds a policy layer between workloads inside the perimeter, so it can contain a breach that's already inside, which a firewall alone can't do.

How does cloud workload segmentation actually work?

Most cloud segmentation tools share a few core ideas, even when the details differ.

Policy at the workload level. Instead of relying only on network boundaries, segmentation places a control point at each workload. Some tools do this with a lightweight agent on the operating system. Others read cloud flow logs and write rules straight into native controls like NSGs and security groups, with no agent on the workload at all. Many platforms support both paths, so teams can choose the right one per workload.

Identity-based policy. IP addresses change constantly in the cloud. Workloads scale up, scale down, move, and get redeployed. Rules tied to IP addresses break when that happens. So modern segmentation ties policy to workload identity, using labels like “web tier,” “production,” or “database.” The policy then follows the workload wherever it goes.

Policy modeling before enforcement. Turning on enforcement is the risky part. A wrong rule can block traffic a real application needs. Better tools let you write policy in a draft mode first, tested against real observed traffic. You can see which flows a rule would block and which applications it would touch, all before anything goes live. That lets teams work during normal hours instead of waiting for a change window.

Graduated enforcement. Teams rarely flip straight to “block everything.” A common path is to start by removing a few risky or plain-text services, then tighten toward a default-deny model that allows only known-good traffic. That end state lines up with Zero Trust principles: least privilege, and no implicit trust between workloads.

Can cloud workload segmentation stop AI-speed and lateral-movement attacks?

Attackers have gotten faster. AI-assisted tooling helps them map the environment and find a path across it within minutes. This is AI attack lateral movement at machine speed, and it changes the defender's problem. If containment waits on a human to spot the threat and write a new rule, the attacker has usually already moved on.

This is where always-on segmentation helps. It's a form of AI-speed breach containment: automated, workload-level control that's already in place before an incident. When policy is set ahead of time, it holds no matter how the attacker got in. It doesn't need to recognize the specific exploit. Whether the intruder used a stolen credential, a remote access tool, or a zero-day exploit, the segmentation still limits how far they can spread. Some teams call this vulnerability-agnostic containment, because the control cares about the path, not the flaw.

For a real-world example, look at Microsoft. After the Midnight Blizzard nation-state attack, Microsoft deployed Illumio across tens of millions of workloads to see and contain lateral movement across its hybrid infrastructure. It was the first time the company publicly named a third-party security platform as part of its internal defenses.

How is cloud workload segmentation different from microsegmentation, CDR, and Zero Trust?

Cloud workload segmentation sits close to a few terms people often mix up.

Network segmentation vs. microsegmentation. Traditional network segmentation splits a network into large zones, often along north-south lines. Microsegmentation goes finer, setting policy between individual workloads. Microsegmentation is a way to create more granular and dynamic access policies than traditional network segmentation.

Segmentation vs. cloud detection and response (CDR). CDR watches for threats already moving inside the environment and alerts the team. Segmentation limits where those threats can move in the first place. The two work well together: detection tells you someone's inside, and segmentation caps how far they get.

Segmentation and Zero Trust. Zero Trust is a security model built on least privilege and no implicit trust. Zero Trust workload segmentation is one of the main ways teams put that model to work, applying least-privilege policy between individual workloads.

How does Illumio approach cloud workload segmentation?

Illumio is a breach containment company, and cloud workload segmentation is a core part of what its platform does. A few specifics, for readers weighing options in this space.

Illumio enforces label-based policy across AWS, Azure, GCP, data centers, containers, and endpoints from one control plane. It supports agentless deployment, which reads VPC and VNet flow logs and writes policy into native cloud controls. It also offers an agent-based mode for workloads that need operating-system-level control. That agent runs in user space. It doesn't sit inline with traffic or inspect packets, and policy holds through restarts and reboots. Draft-mode modeling lets teams test rules against real traffic before enforcement goes live.

In early 2026, Illumio was named a Customers' Choice in the Gartner Peer Insights Voice of the Customer report for Network Security Microsegmentation, one of only two vendors to earn the distinction that period.

Frequently asked questions

What is cloud workload segmentation?

It's the practice of controlling traffic between individual workloads inside a cloud network, such as a VPC or VNet. It adds a policy layer at the workload level, through an operating-system agent or by writing rules into native cloud controls, so a compromised workload can't freely reach others on the same subnet. When the policy gets granular enough to isolate single workloads, people call it microsegmentation.

What's the difference between north-south and east-west traffic?

North-south traffic moves in and out of a cloud environment at its edge. East-west traffic moves sideways, between workloads inside the same network. Native cloud firewalls focus on north-south. East-west is where attackers travel once they're inside, and it's the traffic cloud segmentation is meant to control.

Is cloud workload segmentation the same as a cloud firewall?

No. A cloud firewall, like a security group or NSG, is a perimeter access control that decides what can reach a workload from outside. Cloud workload segmentation adds a policy layer between workloads inside the perimeter, so it can contain a breach that's already inside, which a firewall alone can't do.

How do you secure east-west traffic in a cloud VPC or VNet?

You add workload-level segmentation. That means putting a control point at each workload, either with a lightweight agent on the operating system or by reading cloud flow logs and writing policy into native controls like NSGs and security groups. Good tools let you model a rule's impact against real traffic before you enforce it, so you don't break a working application by accident.

Why aren't AWS Security Groups and Azure NSGs enough on their own?

They're access controls, not breach containment tools. They decide what can reach a workload from outside, but they don't stop a compromised workload from reaching its neighbors on the same subnet. They also don't unify across clouds, and they give you no safe way to test a rule before it goes live. Segmentation adds that missing east-west control.

What's the difference between cloud detection and response (CDR) and microsegmentation?

CDR spots threats already moving inside the environment and alerts the team. Microsegmentation limits where those threats can move in the first place. The two are complementary. When an attack moves faster than a person can respond, containment that's already in place matters more.

Can microsegmentation stop AI-driven attacks?

Yes. While it can't stop an attacker from getting in, it limits how far they spread once they do , and it does this without waiting for anyone to identify the threat first. AI-assisted attacks move across a network within minutes, faster than a manual response can keep up. Because the segmentation policy is already in place, it contains the blast radius no matter which exploit or credential the attacker used, and without waiting for someone to identify the threat first.

Related terms

Microsegmentation, Lateral Movement, Zero Trust, Breach Containment, east-west traffic, cloud detection and response (CDR).

Supposons une rupture.
Minimiser l'impact.
Augmenter la résilience.

Partir du principe que l'imprévu peut survenir à tout moment conduit à adopter les comportements suivants