> 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/civo/terminate-solace.md).

# terminate-solace

Terminate (delete) the Solace broker instance in a network.

## Syntax

```bash
rumi cloud civo terminate-solace \
  --api-key <token> \
  --region <region> \
  --network <network> \
  --keyPair <keypair> \
  [options]
```

## Options

| Option      | Short | Description                                         | Default  |
| ----------- | ----- | --------------------------------------------------- | -------- |
| `--api-key` | `-k`  | The Civo API token to use (or set `CIVO_API_TOKEN`) | Required |
| `--region`  | `-r`  | The Civo region the instance is in (e.g. `FRA1`)    | Required |
| `--network` | `-n`  | Name of the network                                 | Required |
| `--keyPair` | `-K`  | The network SSH key pair                            | Required |
| `--nowait`  | `-o`  | Do not wait for the instance to fully terminate     | `false`  |

## Example

```bash
rumi cloud civo terminate-solace \
  --api-key $CIVO_API_TOKEN \
  --region FRA1 \
  --network my-cloud \
  --keyPair rumi
```

{% hint style="warning" %}
Terminating an instance permanently deletes it and its data. To tear down the whole environment, use [deprovision](/rumi-cli/commands/cloud/civo/deprovision.md).
{% endhint %}

## See Also

* [launch-solace](/rumi-cli/commands/cloud/civo/launch-solace.md)
* [stop-solace](/rumi-cli/commands/cloud/civo/stop-solace.md)
* [deprovision](/rumi-cli/commands/cloud/civo/deprovision.md)
