b9996e6bbe
Also update the Docs and fixup the HTTP API to return proper errors when someone attempts to use Namespaces with an OSS agent. Add Namespace HTTP API docs Make all API endpoints disallow unknown fields
39 lines
895 B
Plaintext
39 lines
895 B
Plaintext
---
|
|
layout: "docs"
|
|
page_title: "Commands: ACL Binding Rule Delete"
|
|
sidebar_current: "docs-commands-acl-binding-rule-delete"
|
|
---
|
|
|
|
# Consul ACL Binding Rule Delete
|
|
|
|
Command: `consul acl binding-rule delete`
|
|
|
|
The `acl binding-rule delete` command deletes a binding rule.
|
|
|
|
## Usage
|
|
|
|
Usage: `consul acl binding-rule delete [options]`
|
|
|
|
#### API Options
|
|
|
|
<%= partial "docs/commands/http_api_options_client" %>
|
|
<%= partial "docs/commands/http_api_options_server" %>
|
|
|
|
#### Command Options
|
|
|
|
* `-id=<string>` - The ID of the binding rule to delete. It may be specified as a
|
|
unique ID prefix but will error if the prefix matches multiple binding rule IDs.
|
|
|
|
#### Enterprise Options
|
|
|
|
<%= partial "docs/commands/http_api_namespace_options" %>
|
|
|
|
## Examples
|
|
|
|
Delete a binding rule:
|
|
|
|
```sh
|
|
$ consul acl binding-rule delete -id 0ec1bd
|
|
Binding rule "0ec1bd2f-1d3b-bafb-d9bf-90ef04ab1890" deleted successfully
|
|
```
|