2018-10-24 14:24:29 +00:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "Commands: ACL"
|
|
|
|
sidebar_current: "docs-commands-acl"
|
|
|
|
---
|
|
|
|
|
|
|
|
# Consul ACLs
|
|
|
|
|
|
|
|
Command: `consul acl`
|
|
|
|
|
|
|
|
The `acl` command is used to interact with Consul's ACLs via the command
|
|
|
|
line. It exposes top-level commands for bootstrapping the ACL system,
|
|
|
|
managing tokens and policies, translating legacy rules, and setting the
|
|
|
|
tokens for use by an agent.
|
|
|
|
|
2018-11-16 19:06:35 +00:00
|
|
|
ACLs are also accessible via the [HTTP API](/api/acl/acl.html).
|
2018-10-24 14:24:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
Bootstrap Consul's ACLs:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ consul acl bootstrap
|
|
|
|
AccessorID: 4d123dff-f460-73c3-02c4-8dd64d136e01
|
|
|
|
SecretID: 86cddfb9-2760-d947-358d-a2811156bf31
|
|
|
|
Description: Bootstrap Token (Global Management)
|
|
|
|
Local: false
|
|
|
|
Create Time: 2018-10-22 11:27:04.479026 -0400 EDT
|
|
|
|
Policies:
|
|
|
|
00000000-0000-0000-0000-000000000001 - global-management
|
|
|
|
```
|
|
|
|
|
|
|
|
Create a policy:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ consul acl policy create -name "acl-replication" -description "Token capable of replicating ACL policies" -rules 'acl = "read"'
|
|
|
|
ID: 35b8ecb0-707c-ee18-2002-81b238b54b38
|
|
|
|
Name: acl-replication
|
|
|
|
Description: Token capable of replicating ACL policies
|
|
|
|
Datacenters:
|
|
|
|
Rules:
|
|
|
|
acl = "read"
|
|
|
|
```
|
|
|
|
|
|
|
|
Create a token:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ consul acl token create -description "Agent Policy Replication - my-agent" -policy-name "acl-replication"
|
|
|
|
AccessorID: c24c11aa-4e08-e25c-1a67-705a2e8d75a4
|
|
|
|
SecretID: e7024f9c-f016-02dd-6217-daedbffb86ac
|
|
|
|
Description: Agent Policy Replication - my-agent
|
|
|
|
Local: false
|
|
|
|
Create Time: 2018-10-22 11:34:49.960482 -0400 EDT
|
|
|
|
Policies:
|
|
|
|
35b8ecb0-707c-ee18-2002-81b238b54b38 - acl-replication
|
|
|
|
```
|
|
|
|
|
|
|
|
For more examples, ask for subcommand help or view the subcommand documentation
|
|
|
|
by clicking on one of the links in the sidebar.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Usage: `consul acl <subcommand>`
|
|
|
|
|
|
|
|
For the exact documentation for your Consul version, run `consul acl -h` to
|
|
|
|
view the complete list of subcommands.
|
|
|
|
|
|
|
|
```text
|
|
|
|
Usage: consul acl <subcommand> [options] [args]
|
|
|
|
|
|
|
|
This command has subcommands for interacting with Consul's ACLs.
|
|
|
|
Here are some simple examples, and more detailed examples are available
|
|
|
|
in the subcommands or the documentation.
|
|
|
|
|
|
|
|
Bootstrap ACLs:
|
|
|
|
|
|
|
|
$ consul acl bootstrap
|
|
|
|
|
|
|
|
List all ACL Tokens:
|
|
|
|
|
2018-10-29 08:33:42 +00:00
|
|
|
$ consul acl token list
|
2018-10-24 14:24:29 +00:00
|
|
|
|
|
|
|
Create a new ACL Policy:
|
|
|
|
|
2019-02-01 15:16:36 +00:00
|
|
|
$ consul acl policy create -name "new-policy" \
|
2018-11-07 18:42:13 +00:00
|
|
|
-description "This is an example policy" \
|
|
|
|
-datacenter "dc1" \
|
|
|
|
-datacenter "dc2" \
|
2018-10-24 14:24:29 +00:00
|
|
|
-rules @rules.hcl
|
|
|
|
|
|
|
|
Set the default agent token:
|
|
|
|
|
|
|
|
$ consul acl set-agent-token default 0bc6bc46-f25e-4262-b2d9-ffbe1d96be6f
|
|
|
|
|
|
|
|
For more examples, ask for subcommand help or view the documentation.
|
|
|
|
|
|
|
|
Subcommands:
|
|
|
|
bootstrap Bootstrap Consul's ACL system
|
|
|
|
policy Manage Consul's ACL Policies
|
|
|
|
set-agent-token Interact with the Consul's ACLs
|
|
|
|
token Manage Consul's ACL Tokens
|
|
|
|
translate-rules Translate the legacy rule syntax into the current syntax
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
For more information, examples, and usage about a subcommand, click on the name
|
|
|
|
of the subcommand in the sidebar or one of the links below:
|