> 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/delete-network.md).

# delete-network

Delete a Rumi network from a Civo region.

## Syntax

```bash
rumi cloud civo delete-network \
  --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 in which to delete the network (e.g. `FRA1`) | Required |
| `--network` | `-n`  | The name of the network to delete                            | Required |
| `--keyPair` | `-K`  | The network SSH key pair                                     | Required |

## Example

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

## Notes

* To tear down a whole provisioned environment (instances and network together), use [deprovision](/rumi-cli/commands/cloud/civo/deprovision.md) instead.

## See Also

* [create-network](/rumi-cli/commands/cloud/civo/create-network.md)
* [list-networks](/rumi-cli/commands/cloud/civo/list-networks.md)
* [deprovision](/rumi-cli/commands/cloud/civo/deprovision.md)
