2019-05-01 21:11:23 +00:00
|
|
|
---
|
2020-09-01 15:14:13 +00:00
|
|
|
layout: commands
|
2020-04-07 18:55:19 +00:00
|
|
|
page_title: 'Commands: ACL Binding Rule'
|
2020-04-13 18:40:26 +00:00
|
|
|
sidebar_title: binding-rule
|
2019-05-01 21:11:23 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Consul ACL Binding Rules
|
|
|
|
|
|
|
|
Command: `consul acl binding-rule`
|
|
|
|
|
|
|
|
The `acl binding-rule` command is used to manage Consul's ACL binding rules.
|
|
|
|
It exposes commands for creating, updating, reading, deleting, and listing binding rules.
|
|
|
|
This command is available in Consul 1.5.0 and newer.
|
|
|
|
|
2020-04-09 23:46:54 +00:00
|
|
|
ACL binding rules may also be managed via the [HTTP API](/api/acl/binding-rules).
|
2019-05-01 21:11:23 +00:00
|
|
|
|
|
|
|
-> **Note:** All of the example subcommands in this document will require a valid
|
2020-04-07 18:55:19 +00:00
|
|
|
Consul token with the appropriate permissions. Either set the
|
2019-05-01 21:11:23 +00:00
|
|
|
`CONSUL_HTTP_TOKEN` environment variable to the token's secret ID or pass the
|
|
|
|
secret ID as the value of the `-token` parameter.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Usage: `consul acl binding-rule <subcommand>`
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
For the exact documentation for your Consul version, run `consul acl binding-rule -h` to view the complete list of subcommands.
|
2019-05-01 21:11:23 +00:00
|
|
|
|
|
|
|
```text
|
|
|
|
Usage: consul acl binding-rule <subcommand> [options] [args]
|
|
|
|
|
|
|
|
...
|
|
|
|
|
|
|
|
Subcommands:
|
|
|
|
create Create an ACL binding rule
|
|
|
|
delete Delete an ACL binding rule
|
|
|
|
list Lists ACL binding rules
|
|
|
|
read Read an ACL binding rule
|
|
|
|
update Update an ACL binding rule
|
|
|
|
```
|
|
|
|
|
|
|
|
For more information, examples, and usage about a subcommand, click on the name
|
|
|
|
of the subcommand in the sidebar.
|
|
|
|
|
|
|
|
## Identifying Binding Rules
|
|
|
|
|
|
|
|
Several of the subcommands need to operate on a specific binding rule. Those
|
|
|
|
subcommands support specifying the binding rule by its ID using the `-id`
|
|
|
|
parameter.
|
|
|
|
|
|
|
|
When specifying the binding rule by its ID a unique binding rule ID prefix may
|
|
|
|
be specified instead of the entire UUID. As long as it is unique it will be
|
|
|
|
resolved to the full UUID and used.
|
|
|
|
|
|
|
|
## Basic Examples
|
|
|
|
|
|
|
|
Create a new binding rule:
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2019-05-01 21:11:23 +00:00
|
|
|
$ consul acl binding-rule create \
|
|
|
|
-method=minikube \
|
|
|
|
-bind-type=service \
|
|
|
|
-bind-name='k8s-${serviceaccount.name}' \
|
|
|
|
-selector='serviceaccount.namespace==default and serviceaccount.name==web'
|
|
|
|
```
|
|
|
|
|
|
|
|
List all binding rules:
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2019-05-01 21:11:23 +00:00
|
|
|
$ consul acl binding-rule list
|
|
|
|
```
|
|
|
|
|
|
|
|
Update a binding rule:
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2019-05-01 21:11:23 +00:00
|
|
|
$ consul acl binding-rule update -id=43cb72df-9c6f-4315-ac8a-01a9d98155ef \
|
|
|
|
-bind-name='k8s-${serviceaccount.name}'
|
|
|
|
```
|
|
|
|
|
|
|
|
Read a binding rule:
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2019-05-01 21:11:23 +00:00
|
|
|
$ consul acl binding-rule read -id fdabbcb5-9de5-4b1a-961f-77214ae88cba
|
|
|
|
```
|
|
|
|
|
|
|
|
Delete a binding rule:
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2019-05-01 21:11:23 +00:00
|
|
|
$ consul acl binding-rule delete -id b6b856da-5193-4e78-845a-7d61ca8371ba
|
|
|
|
```
|