open-consul/website/content/commands/intention/delete.mdx

48 lines
1015 B
Plaintext
Raw Normal View History

---
layout: commands
2020-04-07 18:55:19 +00:00
page_title: 'Commands: Intention Delete'
sidebar_title: delete
---
# Consul Intention Delete
Command: `consul intention delete`
The `intention delete` command deletes a matching intention.
-> **Deprecated** - The one argument form of this command is deprecated in
Consul 1.9.0. Intentions no longer need IDs when represented as
[`service-intentions`](/docs/agent/config-entries/service-intentions) config
entries.
## Usage
Usage:
2020-04-07 18:55:19 +00:00
- `consul intention delete [options] SRC DST`
- `consul intention delete [options] ID`
`SRC` and `DST` can both take [several forms](/commands/intention#source-and-destination-naming).
#### API Options
2020-04-07 18:55:19 +00:00
@include 'http_api_options_client.mdx'
#### Enterprise Options
@include 'http_api_namespace_options.mdx'
## Examples
Delete an intention from "web" to "db" with any action:
2020-05-19 18:32:38 +00:00
```shell-session
$ consul intention delete web db
```
Delete an intention by unique ID:
2020-05-19 18:32:38 +00:00
```shell-session
$ consul intention delete 4ffed935-439c-695d-4f51-f4fc0b12a7a7
```