mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-21 19:05:13 +00:00
This change adds a skill that can analyze the resources within an Azure resource group, determine the relationships between them, and then generate a Markdown file containing the relevant details. The Markdown file includes a Mermaid diagram showing the relationships.
42 lines
970 B
Markdown
42 lines
970 B
Markdown
# Azure Architecture: [Resource Group Name]
|
|
|
|
**Subscription**: [subscription-name]
|
|
**Region**: [primary-region]
|
|
**Resource Count**: [count]
|
|
**Generated**: [date]
|
|
|
|
## Overview
|
|
|
|
[2-3 paragraph summary of the architecture, its purpose, and key components]
|
|
|
|
## Resource Inventory
|
|
|
|
| Resource Name | Type | Tier/SKU | Location | Notes |
|
|
|--------------|------|----------|----------|-------|
|
|
| app-prod-001 | App Service | P1v2 | East US | Production web app |
|
|
| func-prod-001 | Function App | Y1 | East US | Consumption plan |
|
|
|
|
## Architecture Diagram
|
|
|
|
```mermaid
|
|
[full diagram here]
|
|
```
|
|
|
|
## Relationship Details
|
|
|
|
### Network Architecture
|
|
[Describe VNets, subnets, network security]
|
|
|
|
### Data Flow
|
|
[Describe how data moves between components]
|
|
|
|
### Identity & Access
|
|
[Describe managed identities, key vault access, RBAC]
|
|
|
|
### Dependencies
|
|
[Describe critical dependencies and their order]
|
|
|
|
## Notes & Recommendations
|
|
|
|
[Any observations, potential issues, or suggestions]
|