mermaid_example3 / index.html
eaglelandsonce's picture
Update index.html
511b9ee verified
Raw
History Blame Contribute Delete
2.48 kB
<!DOCTYPE html>
<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>