A terminal UI for managing AWS resources, inspired by lazygit, k9s, and lazydocker.
- List instances with color-coded states
- Start/stop/reboot/terminate instances
- Multi-select for bulk operations
- SSM sessions with proper Ctrl+C handling
- View instance details, metrics, and health checks
- k9s integration for EKS nodes
- Returns to EC2 view after SSM exit
- Browse buckets and objects
- Edit files in $EDITOR - press
eto edit, auto-uploads on save - Download/delete objects with typed confirmation
- Generate presigned URLs
- View bucket policies and versioning
- Returns to same location after editing
- List clusters with status
- View node groups and add-ons
- Update kubeconfig automatically
- Launch k9s for clusters
- VIM-style keybindings - j/k, g/G, Ctrl+d/u for navigation
- Search -
/to search,n/Nfor next/prev match - Commands -
:qquit,:rrefresh,:helpshow help,:ec2/:s3/:eksswitch services - Multi-region/account -
:regionand:accountto switch contexts
git clone https://github.com/fuziontech/lazyaws.git
cd lazyaws
go build -o lazyaws
sudo mv lazyaws /usr/local/bin/lazyawsPress :help or ? for keyboard shortcuts.
Connect to EC2 via SSM:
- Press
/to search for instance - Press
cto connect - Ctrl+C works inside session (kills commands, not the session)
exitto return to lazyaws
Edit S3 file:
- Navigate to object
- Press
eto edit in $EDITOR - Save and quit
- File automatically uploads
- Returns to same S3 location
Key Shortcuts:
j/k, ↑/↓ Navigate
g/G Top/bottom
Ctrl+d/u Page down/up
/ Search
n/N Next/prev match
Enter Select/view details
Esc/q Back/quit
:help Show help
EC2:
s/S Start/stop
r/t Reboot/terminate
c SSM connect
9 Launch k9s (EKS nodes)
Space Multi-select
S3:
e Edit file in $EDITOR
d Download
D Delete (typed confirmation)
u Presigned URL
p/v Policy/versioning
EKS:
9 Launch k9s
u Update kubeconfig
Uses existing AWS CLI configuration (~/.aws/config and ~/.aws/credentials).
aws configure # Set up credentials
export AWS_PROFILE=your-profile # Use specific profile
export AWS_REGION=us-west-2 # Override regionlazyaws supports AWS SSO with automatic account and region selection.
- Go 1.21+ (build only)
- AWS CLI v2 (for SSM)
- Session Manager Plugin (for SSM connectivity)
- kubectl (optional, for EKS)
Install Session Manager Plugin:
# macOS
brew install --cask session-manager-plugin
# Linux
curl "https://s3.amazonaws.com/session-manager-downloads/plugin/latest/linux_64bit/session-manager-plugin.rpm" -o "session-manager-plugin.rpm"
sudo yum install -y session-manager-plugin.rpmSee CLAUDE.md for development workflow.
git checkout -b feature/your-feature
# Make changes
go test ./...
git commit -m 'Add feature'
git push origin feature/your-feature
# Open PRInspired by lazygit, k9s, and lazydocker.
Built with Bubble Tea and AWS SDK for Go v2.
MIT License - see LICENSE file.