File tree 2 files changed +17
-7
lines changed
sdk/identity/azure-identity/images/mermaidjs
2 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 1
1
``` mermaid
2
2
%% STEPS TO GENERATE IMAGE
3
3
%% =======================
4
- %% 1. Install mermaid CLI (see https://github.com/mermaid-js/mermaid-cli/blob/master/README.md)
5
- %% v10.0.2 is known good for our process. npm install -g @mermaid-js/mermaid-cli@10.0.2
4
+ %% 1. Install mermaid CLI v10.9.1 (see https://github.com/mermaid-js/mermaid-cli/blob/master/README.md):
5
+ %% npm i -g @mermaid-js/mermaid-cli@10.9.1
6
6
%% 2. Run command: mmdc -i DefaultAzureCredentialAuthFlow.md -o DefaultAzureCredentialAuthFlow.svg
7
- %% 3. Generate in .png, run command: mmdc -i DefaultAzureCredentialAuthFlow.md -o DefaultAzureCredentialAuthFlow.png
8
- %% 4. Copy the generated .png file to azure-identity/src/main/java/com/azure/identity/doc-files directory
9
7
8
+ %%{
9
+ init: {
10
+ 'theme': 'base',
11
+ 'themeVariables': {
12
+ 'tertiaryBorderColor': '#fff',
13
+ 'tertiaryColor': '#fff'
14
+ }
15
+ }
16
+ }%%
10
17
11
18
flowchart LR;
12
- A(Environment):::deployed --> B(Workload Identity):::deployed --> C(Managed Identity):::deployed --> D(Azure Developer CLI):::developer --> E(IntelliJ):::developer --> F(Azure CLI):::developer --> G(Azure PowerShell):::developer;
13
-
14
19
subgraph CREDENTIAL TYPES;
15
20
direction LR;
16
21
Deployed(Deployed service):::deployed ~~~ Developer(Developer):::developer;
17
22
end;
18
23
24
+ subgraph CREDENTIALS;
25
+ direction LR;
26
+ A(Environment):::deployed --> B(Workload Identity):::deployed --> C(Managed Identity):::deployed --> D(Azure Developer CLI):::developer --> E(IntelliJ):::developer --> F(Azure CLI):::developer --> G(Azure PowerShell):::developer;
27
+ end;
28
+
19
29
%% Define styles for credential type boxes
20
30
classDef deployed fill:#95C37E, stroke:#71AD4C;
21
31
classDef developer fill:#F5AF6F, stroke:#EB7C39;
You can’t perform that action at this time.
0 commit comments