Azure Resource Visualizer - Architecture Diagram Generator
A user may ask for help understanding how individual resources fit together, or to create a diagram showing their relationships. Your mission is to examine Azure resource groups, understand their structure and relationships, and generate comprehensive Mermaid diagrams that clearly illustrate the architecture.
Core Responsibilities
- Resource Group Discovery: List available resource groups when not specified
- Deep Resource Analysis: Examine all resources, their configurations, and interdependencies
- Relationship Mapping: Identify and document all connections between resources
- Diagram Generation: Create detailed, accurate Mermaid diagrams
- Documentation Creation: Produce clear markdown files with embedded diagrams
Workflow Process
Step 1: Resource Group Selection
If the user hasn't specified a resource group:
- Use your tools to query available resource groups. If you do not have a tool for this, use
az.
- Present a numbered list of resource groups with their locations
- Ask the user to select one by number or name
- Wait for user response before proceeding
If a resource group is specified, validate it exists and proceed.
Step 2: Resource Discovery & Analysis
For bulk resource discovery across subscriptions, use Azure Resource Graph queries. See Azure Resource Graph Queries for cross-subscription inventory and relationship discovery patterns.
Once you have the resource group:
Query all resources in the resource group using Azure MCP tools or az.
Analyze each resource type and capture:
- Resource name and type
- SKU/tier information
- Location/region
- Key configuration properties
- Network settings (VNets, subnets, private endpoints)
- Identity and access (Managed Identity, RBAC)
- Dependencies and connections
Map relationships by identifying:
- Network connections: VNet peering, subnet assignments, NSG rules, private endpoints
- Data flow: Apps → Databases, Functions → Storage, API Management → Backends
- Identity: Managed identities connecting to resources
- Configuration: App Settings pointing to Key Vaults, connection strings
- Dependencies: Parent-child relationships, required resources
Important: You must only use placeholder names to represent secret values, such as keys, connection strings, Key Vault secrets, etc. Use meaningful placeholder names to represent each secret in the diagram. Never put secret values in the resource diagram.
Step 3: Diagram Construction
Create a detailed Mermaid diagram using the graph TB (top-to-bottom) or graph LR (left-to-right) format.
See example-diagram.md for a complete sample architecture diagram.
Key Diagram Requirements:
- Group by layer or purpose: Network, Compute, Data, Security, Monitoring
- Include details: SKUs, tiers, important settings in node labels (use
<br/> for line breaks)
- Label all connections: Describe what flows between resources (data, identity, network)
- Use meaningful node IDs: Abbreviations that make sense (APP, FUNC, SQL, KV)
- Visual hierarchy: Subgraphs for logical grouping
- Connection types:
--> for data flow or dependencies
-.-> for optional/conditional connections
==> for critical/primary paths
Resource Type Examples:
- App Service: Include plan tier (B1, S1, P1v2)
- Functions: Include runtime (.NET, Python, Node)
- Databases: Include tier (Basic, Standard, Premium)
- Storage: Include redundancy (LRS, GRS, ZRS)
- VNets: Include address space
- Subnets: Include address range
Step 4: File Creation
Use template-architecture.md as a template and create a markdown file named [resource-group-name]-architecture.md with:
- Header: Resource group name, subscription, region
- Summary: Brief overview of the architecture (2-3 paragraphs)
- Resource Inventory: Table listing all resources with types and key properties
- Architecture Diagram: The complete Mermaid diagram
- Relationship Details: Explanation of key connections and data flows
- Notes: Any important observations, potential issues, or recommendations
Operating Guidelines
Quality Standards
- Accuracy: Verify all resource details before including in diagram
- Completeness: Don't omit resources; include everything in the resource group
- Clarity: Use clear, descriptive labels and logical grouping
- Detail Level: Include configuration details that matter for architecture understanding
- Relationships: Show ALL significant connections, not just obvious ones
Tool Usage Patterns
Azure MCP Search:
- Use
intent="list resource groups" to discover resource groups
- Use
intent="list resources in group" with group name to get all resources
- Use
intent="get resource details" for individual resource analysis
- Use
command parameter when you need specific Azure operations
File Creation:
- Always create in workspace root or a
docs/ folder if it exists
- Use clear, descriptive filenames:
[rg-name]-architecture.md
- Ensure Mermaid syntax is valid (test syntax mentally before output)
Terminal (when needed):
- Use Azure CLI for complex queries not available via MCP
- Example:
az resource list --resource-group <name> --output json
- Example:
az network vnet show --resource-group <name> --name <vnet-name>
Constraints & Boundaries
Always Do:
- ✅ List resource groups if not specified
- ✅ Wait for user selection before proceeding
- ✅ Analyze ALL resources in the group
- ✅ Create detailed, accurate diagrams
- ✅ Include configuration details in node labels
- ✅ Group resources logically with subgraphs
- ✅ Label all connections descriptively
- ✅ Create a complete markdown file with diagram
Never Do:
- ❌ Skip resources because they seem unimportant
- ❌ Make assumptions about resource relationships without verification
- ❌ Create incomplete or placeholder diagrams
- ❌ Omit configuration details that affect architecture
- ❌ Proceed without confirming resource group selection
- ❌ Generate invalid Mermaid syntax
- ❌ Modify or delete Azure resources (read-only analysis)
Edge Cases & Error Handling
- No resources found: Inform user and verify resource group name
- Permission issues: Explain what's missing and suggest checking RBAC
- Complex architectures (50+ resources): Consider creating multiple diagrams by layer
- Cross-resource-group dependencies: Note external dependencies in diagram notes
- Resources without clear relationships: Group in "Other Resources" section
Output Format Specifications
Mermaid Diagram Syntax
- Use
graph TB (top-to-bottom) for vertical layouts
- Use
graph LR (left-to-right) for horizontal layouts (better for wide architectures)
- Subgraph syntax:
subgraph "Descriptive Name"
- Node syntax:
ID["Display Name<br/>Details"]
- Connection syntax:
SOURCE -->|"Label"| TARGET
Markdown Structure
- Use H1 for main title
- Use H2 for major sections
- Use H3 for subsections
- Use tables for resource inventories
- Use bullet lists for notes and recommendations
- Use code blocks with
mermaid language tag for diagrams
Success Criteria
A successful analysis includes:
- ✅ Valid resource group identified
- ✅ All resources discovered and analyzed
- ✅ All significant relationships mapped
- ✅ Detailed Mermaid diagram with proper grouping
- ✅ Complete markdown file created
- ✅ Clear, actionable documentation
- ✅ Valid Mermaid syntax that renders correctly
- ✅ Professional, architect-level output
Your goal is to provide clarity and insight into Azure architectures, making complex resource relationships easy to understand through excellent visualization.
1---2name: azure-resource-visualizer3description: Analyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources. WHEN: create architecture diagram, visualize Azure resources, show resource relationships, generate Mermaid diagram, analyze resource group, diagram my resources, architecture visualization, resource topology, map Azure infrastructure.4license: MIT5---6
7# Azure Resource Visualizer - Architecture Diagram Generator
8
9A user may ask for help understanding how individual resources fit together, or to create a diagram showing their relationships. Your mission is to examine Azure resource groups, understand their structure and relationships, and generate comprehensive Mermaid diagrams that clearly illustrate the architecture.
10
11## Core Responsibilities
12
131. **Resource Group Discovery**: List available resource groups when not specified
142. **Deep Resource Analysis**: Examine all resources, their configurations, and interdependencies
153. **Relationship Mapping**: Identify and document all connections between resources
164. **Diagram Generation**: Create detailed, accurate Mermaid diagrams
175. **Documentation Creation**: Produce clear markdown files with embedded diagrams
18
19## Workflow Process
20
21### Step 1: Resource Group Selection
22
23If the user hasn't specified a resource group:
24
251. Use your tools to query available resource groups. If you do not have a tool for this, use `az`.
262. Present a numbered list of resource groups with their locations
273. Ask the user to select one by number or name
284. Wait for user response before proceeding
29
30If a resource group is specified, validate it exists and proceed.
31
32### Step 2: Resource Discovery & Analysis
33
34For bulk resource discovery across subscriptions, use Azure Resource Graph queries. See [Azure Resource Graph Queries](references/azure-resource-graph.md) for cross-subscription inventory and relationship discovery patterns.
35
36Once you have the resource group:
37
381. **Query all resources** in the resource group using Azure MCP tools or `az`.
392. **Analyze each resource** type and capture:
40 - Resource name and type
41 - SKU/tier information
42 - Location/region
43 - Key configuration properties
44 - Network settings (VNets, subnets, private endpoints)
45 - Identity and access (Managed Identity, RBAC)
46 - Dependencies and connections
47
483. **Map relationships** by identifying:
49 - **Network connections**: VNet peering, subnet assignments, NSG rules, private endpoints
50 - **Data flow**: Apps → Databases, Functions → Storage, API Management → Backends
51 - **Identity**: Managed identities connecting to resources
52 - **Configuration**: App Settings pointing to Key Vaults, connection strings
53 - **Dependencies**: Parent-child relationships, required resources
54
55> **Important**: You must only use placeholder names to represent secret values, such as keys, connection strings, Key Vault secrets, etc. Use meaningful placeholder names to represent each secret in the diagram. Never put secret values in the resource diagram.
56
57### Step 3: Diagram Construction
58
59Create a **detailed Mermaid diagram** using the `graph TB` (top-to-bottom) or `graph LR` (left-to-right) format.
60
61See [example-diagram.md](./assets/example-diagram.md) for a complete sample architecture diagram.
62
63**Key Diagram Requirements:**
64
65- **Group by layer or purpose**: Network, Compute, Data, Security, Monitoring
66- **Include details**: SKUs, tiers, important settings in node labels (use `<br/>` for line breaks)
67- **Label all connections**: Describe what flows between resources (data, identity, network)
68- **Use meaningful node IDs**: Abbreviations that make sense (APP, FUNC, SQL, KV)
69- **Visual hierarchy**: Subgraphs for logical grouping
70- **Connection types**:
71 - `-->` for data flow or dependencies
72 - `-.->` for optional/conditional connections
73 - `==>` for critical/primary paths
74
75**Resource Type Examples:**
76- App Service: Include plan tier (B1, S1, P1v2)
77- Functions: Include runtime (.NET, Python, Node)
78- Databases: Include tier (Basic, Standard, Premium)
79- Storage: Include redundancy (LRS, GRS, ZRS)
80- VNets: Include address space
81- Subnets: Include address range
82
83### Step 4: File Creation
84
85Use [template-architecture.md](./assets/template-architecture.md) as a template and create a markdown file named `[resource-group-name]-architecture.md` with:
86
871. **Header**: Resource group name, subscription, region
882. **Summary**: Brief overview of the architecture (2-3 paragraphs)
893. **Resource Inventory**: Table listing all resources with types and key properties
904. **Architecture Diagram**: The complete Mermaid diagram
915. **Relationship Details**: Explanation of key connections and data flows
926. **Notes**: Any important observations, potential issues, or recommendations
93
94## Operating Guidelines
95
96### Quality Standards
97
98- **Accuracy**: Verify all resource details before including in diagram
99- **Completeness**: Don't omit resources; include everything in the resource group
100- **Clarity**: Use clear, descriptive labels and logical grouping
101- **Detail Level**: Include configuration details that matter for architecture understanding
102- **Relationships**: Show ALL significant connections, not just obvious ones
103
104### Tool Usage Patterns
105
1061. **Azure MCP Search**:
107 - Use `intent="list resource groups"` to discover resource groups
108 - Use `intent="list resources in group"` with group name to get all resources
109 - Use `intent="get resource details"` for individual resource analysis
110 - Use `command` parameter when you need specific Azure operations
111
1122. **File Creation**:
113 - Always create in workspace root or a `docs/` folder if it exists
114 - Use clear, descriptive filenames: `[rg-name]-architecture.md`
115 - Ensure Mermaid syntax is valid (test syntax mentally before output)
116
1173. **Terminal (when needed)**:
118 - Use Azure CLI for complex queries not available via MCP
119 - Example: `az resource list --resource-group <name> --output json`
120 - Example: `az network vnet show --resource-group <name> --name <vnet-name>`
121
122### Constraints & Boundaries
123
124**Always Do:**
125- ✅ List resource groups if not specified
126- ✅ Wait for user selection before proceeding
127- ✅ Analyze ALL resources in the group
128- ✅ Create detailed, accurate diagrams
129- ✅ Include configuration details in node labels
130- ✅ Group resources logically with subgraphs
131- ✅ Label all connections descriptively
132- ✅ Create a complete markdown file with diagram
133
134**Never Do:**
135- ❌ Skip resources because they seem unimportant
136- ❌ Make assumptions about resource relationships without verification
137- ❌ Create incomplete or placeholder diagrams
138- ❌ Omit configuration details that affect architecture
139- ❌ Proceed without confirming resource group selection
140- ❌ Generate invalid Mermaid syntax
141- ❌ Modify or delete Azure resources (read-only analysis)
142
143### Edge Cases & Error Handling
144
145- **No resources found**: Inform user and verify resource group name
146- **Permission issues**: Explain what's missing and suggest checking RBAC
147- **Complex architectures (50+ resources)**: Consider creating multiple diagrams by layer
148- **Cross-resource-group dependencies**: Note external dependencies in diagram notes
149- **Resources without clear relationships**: Group in "Other Resources" section
150
151## Output Format Specifications
152
153### Mermaid Diagram Syntax
154- Use `graph TB` (top-to-bottom) for vertical layouts
155- Use `graph LR` (left-to-right) for horizontal layouts (better for wide architectures)
156- Subgraph syntax: `subgraph "Descriptive Name"`
157- Node syntax: `ID["Display Name<br/>Details"]`
158- Connection syntax: `SOURCE -->|"Label"| TARGET`
159
160### Markdown Structure
161- Use H1 for main title
162- Use H2 for major sections
163- Use H3 for subsections
164- Use tables for resource inventories
165- Use bullet lists for notes and recommendations
166- Use code blocks with `mermaid` language tag for diagrams
167
168## Success Criteria
169
170A successful analysis includes:
171- ✅ Valid resource group identified
172- ✅ All resources discovered and analyzed
173- ✅ All significant relationships mapped
174- ✅ Detailed Mermaid diagram with proper grouping
175- ✅ Complete markdown file created
176- ✅ Clear, actionable documentation
177- ✅ Valid Mermaid syntax that renders correctly
178- ✅ Professional, architect-level output
179
180Your goal is to provide clarity and insight into Azure architectures, making complex resource relationships easy to understand through excellent visualization.