Docs / Getting Started / How to Add an SSH Key to Your Account

How to Add an SSH Key to Your Account

By Admin · Feb 25, 2026 · Updated Apr 23, 2026 · 205 views · 1 min read

SSH keys provide secure, password-less authentication to your Breezes. Adding one to your account lets you select it during deployment.

Generate an SSH Key

If you don't already have one, generate a key pair on your local machine:

ssh-keygen -t ed25519 -C "your-email@example.com"

Press Enter to accept the default file location. Optionally set a passphrase for extra security.

Copy Your Public Key

cat ~/.ssh/id_ed25519.pub

Copy the entire output.

Add to Kazepute

  1. Go to Account → SSH Keys
  2. Click Add SSH Key
  3. Enter a name (e.g., "My Laptop")
  4. Paste your public key
  5. Click Save

Your key is now available when deploying new Breezes.

Was this article helpful?