ACL Tokens

This topic describes access control list (ACL) tokens, which are the core method of authentication in Consul.

Introduction

Tokens are artifacts in the ACL system used to authenticate users, services, and Consul agents. When ACLs are enabled, entities requesting access to a resource must include a token that has been linked with a policy, service identity, or node identity that grants permission to the resource. The ACL system checks the token and grants or denies access to resource based on the associated permissions.

Refer to the ACL system workflow overview for information about tokens’ role in the ACL system.

Creating Tokens

The person responsible for administrating ACLs can use the API or CLI to create and link tokens to entities that enable permissions to resources. Refer to the ACL API and ACL CLI documentation for instructions on how to create and link tokens. Tokens can also be created dynamically from trusted external system using an auth method.

Refer to the Secure Consul with Access Control Lists (ACLs) tutorial for help getting started with creating tokens. The tutorial includes an interactive sandbox so that you can perform the procedures without configuring your local environment.

Passing Tokens

Users deploying their services into the network or performing some operations in the Consul command line or GUI will need to include the value of the token’s SecretID attribute. The SecretID is often referred to as the ACL token. It is an opaque string that identifies the requester so that the ACL system can determine if access to the requested resource should be granted or denied.

Tokens have several additional attributes. Refer to Token Attributes for details.

Service Requests

Specify the value of the SecretID attribute with the token parameter when configuring your services. In the following example service configuration, the token has been included as a string parameter to the redis service:

  1. 1234567service = {
  2. id = "redis"
  3. name = "redis"
  4. ...
  5. namespace = "foo"
  6. token = "233b604b-b92e-48c8-a253-5f11514e4b50"
  7. }
  1. 123456789{
  2. "service": {
  3. "id": "redis",
  4. "name": "redis",
  5. ...
  6. "token": "233b604b-b92e-48c8-a253-5f11514e4b50",
  7. "namespace": "foo"
  8. }
  9. }

Refer to Services Configuration Reference for additional information.

Agent Requests

Consul agents can be configured to hold several ACL tokens (see tokens) to accommodate several use cases. The following table describes agent configuration fields where ACLs are applicable and whether the configurations apply to servers, clients, or both.

Configuration OptionServersClientsPurpose
acl.enabledREQUIREDREQUIREDControls whether ACLs are enabled
acl.default_policyOPTIONALN/ADetermines allowlist or denylist mode
acl.down_policyOPTIONALOPTIONALDetermines what to do when the remote token or policy resolution fails
acl.role_ttlOPTIONALOPTIONALDetermines time-to-live for cached ACL Roles
acl.policy_ttlOPTIONALOPTIONALDetermines time-to-live for cached ACL Policies
acl.token_ttlOPTIONALOPTIONALDetermines time-to-live for cached ACL Tokens

In the following example, the agent is configured to use a default token:

  1. tokens = {
  2. default = "233b604b-b92e-48c8-a253-5f11514e4b50"
  3. }
  1. {
  2. "tokens": {
  3. "default": "233b604b-b92e-48c8-a253-5f11514e4b50"
  4. }
  5. }

Refer to the agent configurations documentation for additional information.

Command Line Requests

To make a request on the command line, specify the ACL token with the -token command line flag. In the following example, a token is included to enable the user to create an intention on the command line:

  1. $ consul intention create -file one.json two.json -token "233b604b-b92e-48c8-a253-5f11514e4b50"

Refer to the documentation for the command line operations you want to perform for additional information.

Environment Variables

You can export tokens to environment variables on the local machine, which enable you to omit the -token flag when performing operations on the Consul command line. Refer to the Consul command line documentation for details.

API Requests

Specify the token in the HTTP X-Consul-Token header field to make an API request. Refer to the HTTP API documentation for details.

The following example shows the header for a GET request to the agent/members endpoint.

  1. $ curl --header "X-Consul-Token: <token>" "http://127.0.0.1:8500/v1/agent/members"

Token Attributes

The following table is a partial list of attributes that a token may contain. Refer to the API or command line documentation for all attributes that can be assigned or generated for a token:

AttributeDescriptionTypeDefault
AccessorIDUsed for audit logging. The accessor ID is also returned in API responses to identify the token without revealing the secret ID.Stringauto-generated
SecretIDUsed to request access to resources, data, and APIs.Stringauto-generated
PartitionEnterprise Specifies the name of the admin partition in which the token is valid. See Admin Partitions for additional information.Stringdefault
NamespaceEnterprise Specifies the name of the Consul namespace in which the token is valid. See Namespaces for additional information.Stringdefault
DescriptionHuman-readable description for documenting the purpose of the token.Stringnone
LocalIndicates whether the token should be replicated globally or local to the datacenter.
Set to false to replicate globally across all reachable datacenters.
Setting to true configures the token to functional in the local datacenter only.
Booleanfalse
ServiceIdentitiesSpecifies a list of service identities to apply to the token. See Service Identities in the “Roles” topic for additional information.Arraynone
NodeIdentitiesSpecifies a list of node identities to apply to the token. See Node Identities in the “Roles” topic for additional information.Arraynone
PoliciesList of policies linked to the token, including the policy ID and name.Stringnone
RolesList of roles linked to the token, including the role ID and name.Stringnone

Special-purpose Tokens

Your ACL administrator can configure several tokens that enable specific functions, such as bootstrapping the ACL system or accessing Consul under specific conditions. The following table describes the special-purpose tokens:

TokenServersClientsDescription
acl.tokens.agent_recoveryOPTIONALOPTIONALEnables access to the Agent API when remote bearer token resolution fails.
Used for setting up the cluster and performing initial join operations.
See ACL Agent Recovery Token for details.
acl.tokens.agentOPTIONALOPTIONALUsed for internal agent operations. See ACL Agent Token for details.
acl.tokens.initial_managementOPTIONALN/AUsed to bootstrap the ACL system. See Initial Management Token.
acl.tokens.defaultOPTIONALOPTIONALSpecifies a default token to use for client requests if no token is supplied. This is commonly configured with read-only access to services to enable DNS service discovery on agents.

All reserved tokens except the initial_management token can be created or updated using the /v1/agent/token API.

Snapshot Tokens

Snapshots are artifacts created with the snapshot API for backup and recovery purposes. Snapshots contain ACL tokens and interacting with them requires a token with acl:write privileges.

ACL Agent Token

The acl.tokens.agent is a special token that is used for an agent’s internal operations. It isn’t used directly for any user-initiated operations like the acl.tokens.default, though if the acl.tokens.agent isn’t configured the acl.tokens.default will be used. The ACL agent token is used for the following operations by the agent:

  1. Updating the agent’s node entry using the Catalog API, including updating its node metadata, tagged addresses, and network coordinates
  2. Performing anti-entropy syncing, in particular reading the node metadata and services registered with the catalog
  3. Reading and writing the special _rexec section of the KV store when executing consul exec commands

Here’s an example policy sufficient to accomplish the above for a node called mynode:

Example agent policy permitting internal operations

  1. node "mynode" {
  2. policy = "write"
  3. }
  4. service_prefix "" {
  5. policy = "read"
  6. }
  7. key_prefix "_rexec" {
  8. policy = "write"
  9. }

The service_prefix policy needs read access for any services that can be registered on the agent. If remote exec is disabled, the default, then the key_prefix policy can be omitted.

Built-in Tokens

Consul includes a built-in anonymous token and initial management token. Both tokens are injected during when you bootstrap the cluster.

Anonymous Token

The anonymous token is used when a request is made to Consul without specifying a bearer token. This token has the following attributes (see Token Attributes for additional information):

The description and policies may be updated, but the anonymous token cannot be deleted.

Initial Management Token

Including an initial management token in the Consul configuration creates the token and links it with the built-in global management policy. The bearer will have have unrestricted privileges to resources and APIs. The SecretID attribute will be set to the value of the configuration entry.

See the Bootstrapping ACLs tutorial for guidance on bootstrapping.

ACL Agent Recovery Token

The acl.tokens.agent_recovery is designed to be used when the Consul servers are not available. The policy linked to the token is managed locally on the agent and does not require a token to be defined on the Consul servers. Once set, it implicitly has the following policy associated with it

  1. agent "<node name of agent>" {
  2. policy = "write"
  3. }
  4. node_prefix "" {
  5. policy = "read"
  6. }