Skip to content

Instantly share code, notes, and snippets.

@shaxbee
Created September 7, 2021 13:24
Show Gist options
  • Save shaxbee/8acc5473ba7ffa314ad9b2e4b827c163 to your computer and use it in GitHub Desktop.
Save shaxbee/8acc5473ba7ffa314ad9b2e4b827c163 to your computer and use it in GitHub Desktop.
Envoy Authorization Flow - OK
sequenceDiagram
    participant Client
    participant Envoy
    participant ACL
    participant JWKS Server
    participant Backend

    loop Keys
    ACL->>JWKS Server: Fetch JWKS
    JWKS Server->>ACL: JWKS
    end

    Client->>Envoy: Request
    Envoy->>ACL: Check Authorization
    ACL->>Envoy: Authorization OK
    Envoy->>Backend: Request
    Backend->>Envoy: Respose
    Envoy->>Client: Response
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment