Canonical paths
Use a predictable structure like /aws/ec2, /gcp/run, or /az/aks.
This site is a tiny shortcut layer for cloud consoles. Instead of hunting through bookmarks or menus, you type a short path like /aws/ec2, /gcp/bigquery, or /az/keyvault and land directly on the destination.
Every shortcut is just a simple redirect. The path stays human-friendly, while the site sends you to the real provider console URL underneath.
Use a predictable structure like /aws/ec2, /gcp/run, or /az/aks.
Common shortcuts such as /ec2, /bq, and /kv save even more typing.
Generic paths like /logs, /compute, and /billing can point to your default platform.
The URL system is cloud-agnostic. Keep one clean pattern across providers and only memorize a small set of service names.
Examples: /aws/ec2, /aws/s3, /aws/lambda, /aws/logs.
Examples: /gcp/compute, /gcp/storage, /gcp/gke, /gcp/bigquery.
Examples: /az/vm, /az/keyvault, /az/aks, /az/monitor.
The structure is intentionally simple: canonical routes for clarity, short aliases for speed, and optional neutral routes for your defaults.
/{provider}/{service}
/aws/ec2
/gcp/compute
/az/vm
/ec2 → /aws/ec2 /bq → /gcp/bigquery /kv → /az/keyvault
/compute /storage /logs /billing
/azure/* → /az/:splat /google/* → /gcp/:splat
A small number of routes will cover most daily use. Start here, then add more paths as you discover what you open most often.