Root SSH on day one. A clean REST API, a CLI that ships before the docs, and a Terraform provider you can pin in CI. No console lock-ins, no hidden behavior.

Same primitives, three surfaces. Whatever fits your workflow — the dashboard exposes nothing the API can't do.
curl -X POST https://api.rocksolidhost.com/v1/servers \
-H "Authorization: Bearer $RSH_TOKEN" \
-d '{
"plan": "vps-4",
"region": "iad",
"image": "ubuntu-24.04"
}'$ rsh server create \
--plan vps-4 \
--region iad \
--image ubuntu-24.04
✓ provisioned in 38s
✓ SSH ready at [email protected]resource "rsh_server" "api" {
plan = "vps-4"
region = "iad"
image = "ubuntu-24.04"
ssh_keys = [rsh_ssh_key.me.id]
}
# terraform apply → ~40sThe boring infrastructure done right. Bring your own framework, your own deploy story, your own opinions.
Real shell on a real Linux box. systemd, journalctl, your own packages — no PaaS sandbox.
Local NVMe on every plan. 100 Gbps backbone. Sub-millisecond cross-AZ inside a region.
Native IPv6, free private VLANs between your servers, floating IPs that move in seconds.
Prometheus-compatible scrape endpoint. Tail logs over the API. No agent install required.
Atomic snapshots in seconds, rollback in under a minute. Versioned, scriptable, free.
Dedicated vCPUs on VPS and up. No noisy neighbors, no surprise throttles, no shared kernels.
Standard images come pre-warmed with current LTS runtimes. Need something exotic? Bring a Dockerfile.
Free $20 of credit on signup. No card required. Tear it down in one command if you don't like it.