> 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-platform.md).

# stop-platform

Stop (graceful shutdown) every platform instance in a network, in dependency order: the bastion is stopped last so DNS and the reverse proxy stay up while the other roles wind down.

## Syntax

```bash
rumi cloud hetzner stop-platform \
  --api-key <token> \
  --network <network> \
  [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 |

## Example

```bash
rumi cloud hetzner stop-platform --api-key $HCLOUD_TOKEN --network my-cloud
```

## Notes

* Acts on all platform roles (bastion, admin, monitor, and any broker). The bastion is stopped last.
* Service (worker) instances are not touched; stop them with [stop-instance](/rumi-cli/commands/cloud/hetzner/stop-instance.md), or stop the whole network with [stop](/rumi-cli/commands/cloud/hetzner/stop.md).

## See Also

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