Skip to main content

Azure Orchestrator Agent

Status: In Development

The Azure Orchestrator is currently in active development. This page outlines the planned architecture and capabilities. We'll update it as features ship.


What we're building

Managing Azure infrastructure at scale is verbose. Whether you're working with Azure Resource Manager (ARM) templates or the Azure Terraform provider, provisioning even a basic setup requires navigating hundreds of resource types across networking, identity, compute, and data services — each with its own configuration nuances.

The Azure Orchestrator Agent will automate this. Following the same proven Deep Agent architecture as the AWS Orchestrator, this agent will take natural language requests and generate production-ready Azure Terraform modules through a research-driven, multi-agent pipeline.


Planned architecture

The Azure Orchestrator will mirror the AWS Orchestrator's Supervisor → Coordinator → Sub-agent hierarchy, adapted for the Azure ecosystem:

Key differences from AWS

AspectAWS OrchestratorAzure Orchestrator (Planned)
Providerhashicorp/awshashicorp/azurerm
Research sourceTerraform Registry (AWS provider docs)Terraform Registry (Azure provider docs)
Security standardsCIS AWS BenchmarksCIS Azure Benchmarks, Azure Security Baseline
Identity modelIAM roles + policiesAzure AD, Managed Identities, RBAC
NetworkingVPC, subnets, SGsVNet, subnets, NSGs, Application Gateway

Shared components

The Azure Orchestrator will reuse the same battle-tested infrastructure:

  • Same Deep Agent pattern — Supervisor → Coordinator → Sub-agents
  • Same Terraform MCP Server — queries live provider docs for azurerm resources
  • Same GitHub MCP Server — commits modules via API
  • Same HITL governance — mandatory commit gates, optional cost gates
  • Same skill system — per-service blueprints that prevent hallucinated configs
  • Same sandbox validationterraform init, fmt, validate

Planned capabilities

Azure services (initial target)

CategoryServices
ComputeAKS, Virtual Machines, App Service, Azure Functions
NetworkingVNet, Subnets, NSG, Application Gateway, Front Door, Private Link
StorageBlob Storage, Azure Files, Managed Disks
DatabaseCosmos DB, Azure SQL, Azure Database for PostgreSQL
IdentityAzure AD, Managed Identity, RBAC role assignments
SecurityKey Vault, Azure Firewall, DDoS Protection
MonitoringAzure Monitor, Log Analytics, Application Insights

Example requests (what you'll be able to do)

"Create an AKS cluster with system and user node pools, Azure CNI networking, and AAD integration."
"Generate Terraform for an Azure SQL managed instance with private endpoint and geo-replication."
"Set up a VNet with hub-spoke topology — hub has Azure Firewall, spokes peer back with UDR routing."

Roadmap

PhaseTargetStatus
Phase 1Core module generation (AKS, VNet, Storage)🔨 In development
Phase 2Security hardening (CIS Azure Benchmarks, Managed Identity)📋 Planned
Phase 3Module updates via GitHub MCP📋 Planned
Phase 4Cross-cloud modules (Azure + AWS in one request)📋 Planned

Stay updated