Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Azure Management Group Diagram</title> | |
| <script type="module"> | |
| import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs'; | |
| mermaid.initialize({ startOnLoad: true }); | |
| </script> | |
| <style> | |
| body { | |
| font-family: sans-serif; | |
| background: #f9f9f9; | |
| padding: 20px; | |
| } | |
| .mermaid { | |
| background: white; | |
| border-radius: 8px; | |
| padding: 20px; | |
| box-shadow: 0 2px 10px rgba(0,0,0,0.1); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h2>Azure Management Group and Subscription Diagram</h2> | |
| <div class="mermaid"> | |
| graph TD | |
| Root[π Root Management Group (Tenant)] | |
| Root --> ProdMG[π Management Group: Prod] | |
| Root --> DevTestMG[π Management Group: Dev & Test] | |
| Root --> SharedMG[π Management Group: Shared Services] | |
| Root --> PartnersMG[π Management Group: Partners & Pilots] | |
| ProdMG --> AppAI[π Subscription: App & AI Services] | |
| ProdMG --> DataAnalytics[π Subscription: Data & Analytics] | |
| AppAI --> AppServices[Azure App Services / Functions] | |
| AppAI --> Cognitive[Azure OpenAI / Cognitive Services] | |
| AppAI --> Speech[Azure Speech & Language Services] | |
| AppAI --> Monitoring[Azure Monitor & App Insights] | |
| DataAnalytics --> Synapse[Azure Synapse / Data Lake] | |
| DataAnalytics --> Cosmos[Azure SQL / CosmosDB] | |
| DataAnalytics --> AML[Azure Machine Learning] | |
| DataAnalytics --> Purview[Azure Purview] | |
| DevTestMG --> AISandbox[π Subscription: AI Sandbox] | |
| DevTestMG --> FrontendDev[π Subscription: Frontend Dev] | |
| AISandbox --> MLStudio[Azure ML Studio] | |
| AISandbox --> TestData[Isolated test datasets] | |
| FrontendDev --> StaticWeb[Azure Static Web Apps] | |
| FrontendDev --> DevLabs[DevTest Labs] | |
| SharedMG --> IdentityAccess[π Subscription: Identity & Access] | |
| SharedMG --> Security[π Subscription: Security & Compliance] | |
| IdentityAccess --> AAD[Azure Active Directory B2C] | |
| IdentityAccess --> KeyVault[Azure Key Vault & Policy] | |
| Security --> Defender[Defender for Cloud] | |
| Security --> Sentinel[Azure Sentinel (SIEM)] | |
| Security --> Audit[Audit Logs & Compliance Policies] | |
| PartnersMG --> BetaSubs[π Subscription: Early Access / Daycare Beta] | |
| BetaSubs --> Regions[Region-specific environments] | |
| BetaSubs --> Telemetry[Customer telemetry (anonymized)] | |
| BetaSubs --> Feedback[Feedback loop integration] | |
| </div> | |
| </body> | |
| </html> | |