Web Access
Access PAM-managed resources directly from your browser with an interactive terminal.
KMS PAM Web Access provides a browser-based portal for interacting with your infrastructure directly from your browser via the Hanzo KMS dashboard — no client tools or CLI required.
Web Access currently supports PostgreSQL databases.
How It Works
When you open a web access session, Hanzo KMS establishes a secure WebSocket connection that tunnels through an KMS Gateway to your target resource. All commands are executed server-side and streamed back to your browser in real time.
sequenceDiagram
participant Browser
participant Hanzo KMS
participant Gateway as KMS Gateway
participant Resource as Target Resource
Browser->>Hanzo KMS: Request session ticket
Hanzo KMS-->>Browser: One-time ticket
Browser->>Hanzo KMS: Open WebSocket with ticket
Hanzo KMS->>Gateway: Establish secure tunnel
Gateway->>Resource: Connect with account credentials
Browser->>Hanzo KMS: User input
Hanzo KMS->>Gateway: Forward input
Gateway->>Resource: Execute
Resource-->>Browser: Streamed outputSession Limits
| Setting | Value |
|---|---|
| Max session duration | 1 hour |
| Idle timeout | 5 minutes (resets on any input) |
| Concurrent sessions | 5 per user per project |
Sessions that exceed the idle timeout or max duration are automatically terminated.
Supported Resources
Interactive SQL terminal with psql-style output formatting.
How is this guide?
Last updated on