> For the complete documentation index, see [llms.txt](https://docs.rumi.systems/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rumi.systems/rumi-cli/commands/cloud/hetzner/stop-instance.md).

# stop-instance

Stop (graceful shutdown) a service (worker) instance in a network. Stopping instances you are not using saves cost.

## Syntax

```bash
rumi cloud hetzner stop-instance \
  --api-key <token> \
  --network <network> \
  --service <service> \
  [options]
```

## Options

| Option      | Short | Description                                                 | Default  |
| ----------- | ----- | ----------------------------------------------------------- | -------- |
| `--api-key` | `-k`  | The Hetzner Cloud project API token (or set `HCLOUD_TOKEN`) | Required |
| `--region`  | `-r`  | The Hetzner location the network is in                      | `fsn1`   |
| `--network` | `-n`  | The name of the network                                     | Required |
| `--service` | `-s`  | The service instance name                                   | Required |

## Example

```bash
rumi cloud hetzner stop-instance --api-key $HCLOUD_TOKEN --network my-cloud --service myapp
```

## See Also

* [launch-instance](/rumi-cli/commands/cloud/hetzner/launch-instance.md)
* [start-instance](/rumi-cli/commands/cloud/hetzner/start-instance.md)
* [terminate-instance](/rumi-cli/commands/cloud/hetzner/terminate-instance.md)
