Skip to content

Commit

Permalink
fix: mermaid chart in readme generation with alzlibtool (#64)
Browse files Browse the repository at this point in the history
* fix: mermaid chart in readme generation with alzlibtool

* chore: update alzlibtool to 0.21.5

* docs(platform/alz): generate docs for alz platform
  • Loading branch information
matt-FFFFFF authored Oct 4, 2024
1 parent 88a8a5d commit bf992bd
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
go-version: 'stable'

- name: Install alzlibtool
run: go install github.com/Azure/alzlib/cmd/alzlibtool@v0.21.3
run: go install github.com/Azure/alzlib/cmd/alzlibtool@v0.21.5

- name: Azure login
uses: azure/login@6c251865b4e6290e7b78be643ea2d005bc51f69a # v2.1.1
Expand Down
4 changes: 4 additions & 0 deletions docs/content/assets/role-definitions.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Within the resource definition, there are several values that specific to the sc
These are:

- The resource id (this must end with a UUID)
- The name (UUID) of the role definition - this must be unique within the tenant
- The role name (`.properties.roleName`) - this must be unique within the tenant
- The assignable scopes

We recommend that clients append the management group id to the end of the rolenames to ensure uniqueness.

[Clients](/Azure-Landing-Zones-Library/clients) should be aware of these values and ensure that they are correctly set when deploying the resource.
30 changes: 20 additions & 10 deletions platform/alz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,35 @@ The following architectures are available in this library, please note that the
```mermaid
flowchart TD
alzroot["ALZ root\n(root)"]
alzroot["ALZ root
(root)"]
alzroot --> decommissioned
decommissioned["Decommissioned\n(decommissioned)"]
decommissioned["Decommissioned
(decommissioned)"]
alzroot --> landingzones
landingzones["Landing zones\n(landing_zones)"]
landingzones["Landing zones
(landing_zones)"]
landingzones --> corp
corp["Corp\n(corp)"]
corp["Corp
(corp)"]
landingzones --> online
online["Online\n(online)"]
online["Online
(online)"]
alzroot --> platform
platform["Platform\n(platform)"]
platform["Platform
(platform)"]
platform --> connectivity
connectivity["Connectivity\n(connectivity)"]
connectivity["Connectivity
(connectivity)"]
platform --> identity
identity["Identity\n(identity)"]
identity["Identity
(identity)"]
platform --> management
management["Management\n(management)"]
management["Management
(management)"]
alzroot --> sandboxes
sandboxes["Sandboxes\n(sandboxes)"]
sandboxes["Sandboxes
(sandboxes)"]
```

Expand Down

0 comments on commit bf992bd

Please sign in to comment.