Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/solution_overview/configuration.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ flowchart TD
LDAP[("LDAP Server")]

subgraph "Authorization Flow"
User -->|"1. Access UI"| AIOps
AIOps -.->|"2. Redirect for Auth"| IdP
IdP <-->|"3. Verify Creds and Fetch Groups"| LDAP
IdP == "4. SAML Token (User + Groups)" ==> AIOps
User -->|"(1) Access UI"| AIOps
AIOps -.->|"(2) Redirect for Auth"| IdP
IdP <-->|"(3) Verify Creds and Fetch Groups"| LDAP
IdP == "(4) SAML Token (User + Groups)" ==> AIOps
end

style AIOps fill:#14164a,stroke:#333,stroke-width:2px
Expand Down Expand Up @@ -58,11 +58,11 @@ flowchart TD
LDAP[("LDAP Server")]

subgraph "Authorization Flow"
User -->|"1. Access UI"| AIOps
AIOps -.->|"2. Redirect for Auth"| IdP
IdP <-->|"3. Verify Creds Only"| LDAP
IdP == "4. SAML Token (User Only)" ==> AIOps
AIOps <-->|"5. Direct Query: Get User Groups"| LDAP
User -->|"(1) Access UI"| AIOps
AIOps -.->|"(2) Redirect for Auth"| IdP
IdP <-->|"(3) Verify Creds Only"| LDAP
IdP == "(4) SAML Token (User Only)" ==> AIOps
AIOps <-->|"(5) Direct Query: Get User Groups"| LDAP
end

style AIOps fill:#f9f,stroke:#333,stroke-width:2px
Expand Down