Hetzner Cloud
Operate Hetzner Cloud through the hcloud CLI. When in doubt about server types, prices, locations, images, or flag syntax, run the discovery command rather than rely on this file or pretraining — the CLI is current.
Authenticate
Generate a token in Hetzner Console → project → Security → API Tokens, then either:
bashhcloud context create <name> # interactive: stored in cli.toml, persists across shells export HCLOUD_TOKEN="…" # CI/scripts: most commands read this automatically
hcloud context create is the one common case that still prompts even with the env var set — pass --token-from-env to skip the prompt in non-interactive sessions.
Health check: hcloud datacenter list.
Mental model
hcloud manages everything inside Hetzner Cloud: servers, networks, firewalls, load balancers, volumes, DNS zones, SSH keys, primary/floating IPs, snapshots, certificates, placement groups, storage boxes.
It does not manage:
- Hetzner Robot — dedicated/auction servers, separate product and API.
- Project creation, billing, team membership, API token issuing — web console only.
Discovery beats memorization. Pretraining ages; the CLI is current.
| Question | Command |
|---|---|
| Server types and prices | hcloud server-type list |
| Locations and datacenters | hcloud location list |
| OS images | hcloud image list --type system (add --architecture arm for ARM) |
| Command/flag details | hcloud <resource> <verb> --help |
| Everything in this project at a glance | hcloud all list |
| Is a server actually reachable? | hcloud server describe <srv> -o json → public_net.ipv4.blocked (see gotcha 9) |
Structured output for scripts: --output json | jq …, --output columns=id,name,status, --output format='{{.PublicNet.IPv4.IP}}'.
Workflows where order matters
Single commands are well-covered by --help. The chains worth pinning down:
Server with SSH key + firewall, ready to log in — key and firewall must exist before server create references them:
bashhcloud ssh-key create --name <key> --public-key-from-file ~/.ssh/id_ed25519.pub hcloud firewall create --name <fw> --rules-file rules.json hcloud server create --name <srv> --type <type> --image ubuntu-24.04 \ --location hel1 --ssh-key <key> --firewall <fw> hcloud server ssh <srv>
Replace firewall rules atomically (don't drift via repeated add-rule):
bashhcloud firewall replace-rules --rules-file rules.json <fw>
Gotchas
-
Public IPs get recycled. A new server may inherit a previously-used IP and SSH refuses with
REMOTE HOST IDENTIFICATION HAS CHANGED!. After deleting a server,ssh-keygen -R <ip>and letssh-keyscanre-add the new host key. -
Context vs
HCLOUD_TOKEN. Context (in user-configcli.toml) persists across shells — preferred for interactive work. Env var is preferred for non-interactive use, paired with--token-from-env. A token sitting in a.envfile is not automatically exported — shells must source it. -
Volumes are location-pinned. A volume in
fsn1cannot attach to a server inhel1. Match--locationat creation. -
hcloud zoneis only half of DNS. The registrar's NS records must point to Hetzner's nameservers before queries resolve. Without that, the zone is just an internal database. -
Match location to where users are; pretraining defaults to
fsn1. Runhcloud location listand pick the closest. Private networks can't span network zones, only locations within one:eu-central(fsn1/hel1/nbg1),us-east(ash),us-west(hil),ap-southeast(sin). -
Don't quote prices or server-type specs from memory. Always verify with
hcloud server-type listbefore committing — names, specs, and pricing shift. -
Deletion is immediate and unrecoverable. No undo on
server deleteorvolume delete.describefirst; create a snapshot (hcloud server create-image --type snapshot <srv>) beforehand if you might want the server back. -
Hetzner Cloud ≠ Hetzner Robot. If the user mentions dedicated servers, server auctions, or the Robot dashboard — that's the other product. Surface the distinction; don't try to manage it here.
-
status: runningis not reachability — checkblocked. Hetzner null-routes a server's IPs at the network level for abuse reports or unpaid invoices. The server keeps reportingrunningandlocked: falsewhile nothing reaches it: not SSH, not the app, not ICMP.bashhcloud server describe <srv> -o json | jq '.public_net | {v4:.ipv4.blocked, v6:.ipv6.blocked}'blocked: truecannot be cleared from the API or the console — only Hetzner support lifts it. Do not debug firewalls,pg_hba, or application timeouts until you have ruled this out; the symptom is an indistinguishableETIMEDOUT. Two tells that point here rather than at an allowlist: a port that is open to0.0.0.0/0(usually SSH/22) times out at the same moment as the application port, and every server on the account is blocked at once — that means an account-level action (billing or abuse), not a per-server fault. -
replace-rulesneedssource_ipsas a real JSON array. The file must match the API schema exactly, and hcloud rejects the whole file — leaving the old rules silently in place — if one field is shaped wrong:json: cannot unmarshal object into Go struct field FirewallRule.source_ips of type []stringIn PowerShell, build
source_ipsas an array (for example@('10.0.0.0/8', '192.168.0.0/16')) and pass enoughConvertTo-Json -Depthfor the full rule structure. Since the write is all-or-nothing, always read the result back rather than assuming it applied:bashhcloud firewall describe <fw> -o json | jq '.rules[] | {port, n: (.source_ips|length)}'
Docs
- API reference (per-resource endpoints): https://docs.hetzner.cloud/reference/cloud
- Cloud product guide: https://docs.hetzner.com/cloud/
- CLI source and changelog: https://github.com/hetznercloud/cli

