Skip to content

Commit

Permalink
fix: add missing mg from architecture (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-FFFFFF authored Aug 27, 2024
1 parent b2bdddc commit e23f114
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
6 changes: 4 additions & 2 deletions platform/alz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ The following architectures are available in this library:
```mermaid
flowchart TD
alzroot["ALZ root\n(root)"]
alzroot --> decommissioned
decommissioned["Decommissioned\n(decommissioned)"]
alzroot --> landingzones
landingzones["Landing zones\n(landing_zones)"]
landingzones --> corp
Expand All @@ -35,12 +37,12 @@ flowchart TD
online["Online\n(online)"]
alzroot --> platform
platform["Platform\n(platform)"]
platform --> management
management["Management\n(management)"]
platform --> connectivity
connectivity["Connectivity\n(connectivity)"]
platform --> identity
identity["Identity\n(identity)"]
platform --> management
management["Management\n(management)"]
alzroot --> sandboxes
sandboxes["Sandboxes\n(sandboxes)"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
"id": "alzroot",
"parent_id": null
},
{
"archetypes": [
"platform"
],
"display_name": "Platform",
"exists": false,
"id": "platform",
"parent_id": "alzroot"
},
{
"archetypes": [
"landing_zones"
Expand Down Expand Up @@ -38,15 +47,6 @@
"id": "online",
"parent_id": "landingzones"
},
{
"archetypes": [
"platform"
],
"display_name": "Platform",
"exists": false,
"id": "platform",
"parent_id": "alzroot"
},
{
"archetypes": [
"sandboxes"
Expand Down Expand Up @@ -82,6 +82,15 @@
"exists": false,
"id": "identity",
"parent_id": "platform"
},
{
"archetypes": [
"decommissioned"
],
"display_name": "Decommissioned",
"exists": false,
"id": "decommissioned",
"parent_id": "alzroot"
}
]
}

0 comments on commit e23f114

Please sign in to comment.