AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Azure Network Security Design

skill-vinayaklatthe-microsoft-security-skills-azure-network-security-design · by vinayaklatthe

Guidance for designing secure Azure network architecture — hub-spoke topology (or Virtual WAN), segmentation with NSGs/ASGs, private endpoints / Private Link for PaaS, egress through Azure Firewall, DDoS protection, WAF on Front Door/App Gateway, and centralised private DNS. Aligned to the Zero Trust network pillar. WHEN: Azure network security, hub spoke, Virtual WAN, network segmentation, NSG A…

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-vinayaklatthe-microsoft-security-skills-azure-network-security-design

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vinayaklatthe-microsoft-security-skills-azure-network-security-design)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Azure Network Security Design? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Azure Network Security Design

Secure Azure networking applies Zero Trust to the network pillar: segment, control traffic explicitly, prefer private connectivity, and inspect / filter egress, assuming the network is hostile. The output is a hub-spoke (or Virtual WAN) topology with NSG microsegmentation, private endpoints, and a single controlled egress path.

When to use

Designing the network topology and controls for an Azure landing zone or workload. Use this skill to pick topology, design segmentation, and place controls.

Do not use this skill for the firewall product itself (azure-firewall), VM hardening (defender-for-cloud-hardening), or single-service networking (azure-key-vault).

Pick the topology

| Estate shape | Topology | Notes | |---|---|---| | Single region, few subscriptions | Hub-spoke (single region) | Default for most | | Multi-region with many spokes / branch sites | Virtual WAN | Microsoft-managed transit | | Greenfield enterprise-scale | Azure Landing Zones (CAF) - VWAN or hub-spoke | Use CAF blueprints | | Heavy on-prem + Azure | Hub-spoke + ExpressRoute / VPN gateway | Hub holds gateway + firewall | | Small / single-workload | Single VNet, no hub | Don't over-engineer |

> Rule of thumb: hub-spoke for most enterprises, Virtual WAN at multi-region branch > scale. The hub holds shared services (firewall, gateway, DNS, Bastion); workloads sit in > spokes. Don't put workloads in the hub.

Approach

  1. Topology and address plan — Pick hub-spoke or Virtual WAN. Allocate non-overlapping RFC

1918 ranges per region / spoke; reserve gateway subnet, firewall subnet, Bastion subnet in the hub. Verify: address plan documented; no overlap with on-prem ranges; no overlap between regions.

  1. Segmentation with NSGs and ASGs — NSG at subnet level (preferred over per-NIC).

Group workloads with Application Security Groups (ASGs) instead of static IP lists - ASGs survive scale events. Microsegment by tier: web / app / data. Verify: NSG flow logs enabled to a Log Analytics workspace; default-deny rule present; ASGs used instead of IP-based source/dest for VM groups.

  1. Private endpoints for PaaS — Use Private Endpoints / Private Link for sensitive

PaaS (Storage, SQL, Key Vault, Cosmos DB). Traffic stays on Microsoft backbone. Disable public network access on the PaaS resource itself. Verify: publicNetworkAccess = Disabled on the resource; private endpoint resolves to a private IP via private DNS zone.

  1. Centralise egress through Azure Firewall — UDR on spokes: 0.0.0.0/0 next hop =

firewall private IP. All outbound goes through the firewall for FQDN filtering and logging. Verify: effective routes on a spoke NIC show next-hop = firewall; no spoke has its own public IP egress.

  1. DDoS + WAF for public-facing — Enable Azure DDoS Network Protection on VNets

with public IPs. Place public web apps behind Front Door or Application Gateway with WAF in Prevention mode. Verify: DDoS plan associated; WAF rules in Prevention (not Detection) for prod.

  1. Centralised DNS — Private DNS zones linked from the hub; spokes auto-resolve PaaS

private endpoints via the zones. Don't let each spoke run its own DNS.

  1. Block management plane on the internet — No direct RDP / SSH from internet to VMs.

Use Azure Bastion (in the hub) or Defender for Cloud just-in-time VM access. Verify: NSGs block 3389 / 22 from internet on all VM subnets; Bastion deployed in hub.

Guardrails

  • Prefer private endpoints over service endpoints for sensitive PaaS data planes. Service

endpoints leave the PaaS resource public; private endpoints make it truly private.

  • Default-deny NSGs; document every allow rule's purpose. Allow lists drift to "allow

everything" without discipline. Use ASGs + comments.

  • **Don't expose management ports (RDP/SSH) to the internet - use Bastion / just-in-time

access.** Internet-exposed 3389 / 22 = compromise within hours.

  • DNS is part of network security. Untrusted DNS resolution undermines private endpoint

isolation.

  • DDoS Network Protection is per-VNet, billed monthly. Cheap insurance for public-facing

VNets; don't blanket-enable on every VNet.

  • NSG flow logs to a workspace. Without them, an incident has no network forensics.

Common anti-patterns

  • "Workloads in the hub - it's just one VNet" - Hub holds shared services only. Workloads

in spokes for blast radius.

  • "Service endpoints because they're cheaper than private endpoints" - Service endpoint

doesn't make the PaaS private; only the routing. Private endpoint for sensitive data.

  • "NSG per NIC for every VM" - Unmanageable. Subnet NSGs + ASGs.
  • "WAF in Detection forever" - Logs attacks; doesn't block them. Move to Prevention

after tuning.

  • "Each spoke has its own egress public IP" - No central inspection, no egress logging.

Force through hub firewall.

  • "Bastion later - we'll RDP through the VPN for now" - VPN credential theft = lateral

movement. Bastion + JIT from day one.

Example prompts

  • Design a hub-and-spoke network with segmentation and private endpoints for an Azure landing zone.
  • How do I apply Zero Trust principles to an Azure virtual network?
  • Plan NSG and ASG rules plus DDoS protection for a secure VNet.
  • Control egress traffic and private connectivity across spokes.
  • Replace internet-exposed RDP with Bastion and just-in-time VM access.
  • Should I use hub-spoke or Virtual WAN for our multi-region estate?

Microsoft Learn

  • Network security best practices: https://learn.microsoft.com/azure/security/fundamentals/network-best-practices
  • Hub-spoke topology: https://learn.microsoft.com/azure/architecture/networking/architecture/hub-spoke
  • Virtual WAN: https://learn.microsoft.com/azure/virtual-wan/virtual-wan-about
  • Private Link: https://learn.microsoft.com/azure/private-link/private-link-overview
  • Zero Trust network: https://learn.microsoft.com/security/zero-trust/deploy/networks
  • DDoS Protection: https://learn.microsoft.com/azure/ddos-protection/ddos-protection-overview
  • Azure Bastion: https://learn.microsoft.com/azure/bastion/bastion-overview
  • NSG flow logs: https://learn.microsoft.com/azure/network-watcher/network-watcher-nsg-flow-logging-overview

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.