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

Azure Networking

skill-tyler-r-kendrick-agent-skills-azure-networking · by Tyler-R-Kendrick

|

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

Install

$ agentstack add skill-tyler-r-kendrick-agent-skills-azure-networking

✓ 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-tyler-r-kendrick-agent-skills-azure-networking)

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 Networking? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Azure Networking Services

Services

| Service | Use When | MCP Tools | CLI | |---------|----------|-----------|-----| | Virtual Network | Private networking, subnets | - | az network vnet | | Private Endpoints | Private PaaS access | - | az network private-endpoint | | Load Balancer | Layer 4 load balancing | - | az network lb | | Application Gateway | Layer 7 load balancing, WAF | - | az network application-gateway | | Front Door | Global load balancing, CDN | - | az afd | | DNS | Domain name resolution | - | az network dns |

Common Patterns

Hub-Spoke Topology

Hub VNet
├── Azure Firewall
├── VPN/ExpressRoute Gateway
├── Bastion Host
└── Central services

Spoke VNets (peered to hub)
├── Application Spoke
├── Data Spoke
└── Management Spoke

Private Endpoint Pattern

Connect to PaaS services privately:

  1. Create private endpoint in your VNet
  2. Disable public access on PaaS resource
  3. Configure private DNS zone
  4. Access service via private IP

CLI Reference

# Virtual Networks
az network vnet list --output table
az network vnet create -g RG -n VNET --address-prefix 10.0.0.0/16

# Subnets
az network vnet subnet list --vnet-name VNET -g RG --output table

# Private Endpoints
az network private-endpoint list --output table

# NSGs
az network nsg list --output table
az network nsg rule list --nsg-name NSG -g RG --output table

# Load Balancers
az network lb list --output table

Security Layers

| Layer | Service | Purpose | |-------|---------|---------| | 4 | NSG | IP/port filtering | | 7 | Azure Firewall | Application rules, threat intel | | 7 | WAF | Web application protection | | Edge | DDoS Protection | Attack mitigation |

Service Details

For deep documentation on specific services:

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.