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 Update'
|
2020-04-13 18:40:26 +00:00
|
|
|
sidebar_title: update
|
2019-05-01 21:11:23 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Consul ACL Binding Rule Update
|
|
|
|
|
|
|
|
Command: `consul acl binding-rule update`
|
|
|
|
|
|
|
|
The `acl binding-rule update` command is used to update a binding rule. The
|
|
|
|
default operations is to merge the current binding rule with those values
|
|
|
|
provided to the command invocation. Therefore to update just one field, only
|
|
|
|
the `-id` option and the option to modify must be provided.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Usage: `consul acl binding-rule update [options] [args]`
|
|
|
|
|
|
|
|
#### API Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_client.mdx'
|
2020-04-07 23:56:08 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_server.mdx'
|
2019-05-01 21:11:23 +00:00
|
|
|
|
|
|
|
#### Command Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-bind-name=<string>` - Name to bind on match. Can use `${var}`
|
2019-05-01 21:11:23 +00:00
|
|
|
interpolation. This flag is required.
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-bind-type=<string>` - Type of binding to perform (`"service"` or `"role"`).
|
2019-05-01 21:11:23 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-description=<string>` - A description of the binding rule.
|
2019-05-01 21:11:23 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-id=<string>` - The ID of the binding rule to update. It may be specified as a
|
2019-05-01 21:11:23 +00:00
|
|
|
unique ID prefix but will error if the prefix matches multiple binding rule IDs
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-meta` - Indicates that binding rule metadata such as the raft
|
|
|
|
indices should be shown for each entry.
|
2019-05-01 21:11:23 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-no-merge` - Do not merge the current binding rule information with what is
|
2019-05-01 21:11:23 +00:00
|
|
|
provided to the command. Instead overwrite all fields with the exception of the
|
|
|
|
binding rule ID which is immutable.
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-selector=<string>` - Selector is an expression that matches against
|
2019-05-01 21:11:23 +00:00
|
|
|
verified identity attributes returned from the auth method during login.
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-format={pretty|json}` - Command output format. The default value is `pretty`.
|
2020-03-26 16:03:22 +00:00
|
|
|
|
2019-12-06 16:14:56 +00:00
|
|
|
#### Enterprise Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_namespace_options.mdx'
|
2019-12-06 16:14:56 +00:00
|
|
|
|
2019-05-01 21:11:23 +00:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
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 '0ec1bd2f-1d3b-bafb-d9bf-90ef04ab1890' \
|
|
|
|
-selector 'serviceaccount.namespace==default'
|
|
|
|
Binding rule updated successfully
|
|
|
|
ID: 0ec1bd2f-1d3b-bafb-d9bf-90ef04ab1890
|
|
|
|
AuthMethod: minikube
|
|
|
|
Description: wildcard service
|
|
|
|
BindType: service
|
|
|
|
BindName: k8s-${serviceaccount.name}
|
|
|
|
Selector: serviceaccount.namespace==default
|
|
|
|
```
|