Access Control List (ACL) Overview

This topic describes core concepts associated with the optional access control list (ACL) system shipped with Consul. ACLs authenticate requests and authorize access to resources. They also control access to the Consul UI, API, and CLI, as well as secure service-to-service and agent-to-agent communication.

Refer to the following tutorials for step-by-step instructions on how to get started using ACLs:

Refer to the ACL API reference and ACL CLI reference for additional usage information.

Workflow Overview

Implementations may vary depending on the needs of the organization, but the following procedure describes the basic workflow for for creating and implementing ACLs:

  1. The person responsible for administrating ACLs in your organization specifies one or more authentication rules to define a policy.

  2. The ACL administrator uses the Consul API to generate and link a token to one or more policies. The following diagram illustrates the relationship between rules, policies, and tokens:

    ACL system component relationships

    The ACL administrator can create and link additional artifacts to tokens, such as service identities, node identities, and roles that enable policies to accommodate more complex requirements.

  3. Tokens are distributed to end users and incorporated into their services.

  4. Agents and services present the token when making requests.

  5. Consul evaluates the token to determine if the request has permission to interact with the requested resource.

Tokens

ACL tokens are the core method of authentication in Consul. Tokens contain several attributes, but the value of the SecretID field (sometimes referred to as the ACL token) is the attribute that you or your service must include to identify the person or system making the request. Your ACL administrator may also use the token’s AccessorID for audit logging purposes.

Refer to the following topics for details about tokens:

Policies

An ACL policy is a set of rules that grant or deny access to resources in the network. The person responsible for administrating ACLs in your organization will assemble and create policies and link them to tokens. Tokens are the artifacts distributed to users so that they can be implemented. In addition to the rules that authenticate access to services, several attributes may be assigned policies that determine their scope.

Refer to the following topics for details about policies:

Roles

A role is a collection of policies that your ACL administrator can link to a token. They enable you to reuse policies by decoupling the policies from the token distributed to team members. Instead, the token is linked to the role, which is able to hold several policies that can be updated asynchronously without distributing new tokens to users. As a result, roles can provide a more convenient authentication infrastructure than creating unique policies and tokens for each requester.

Refer to the Roles topic for additional information.

Service Identities

Service identities are configuration blocks that you can add to role configurations or specify when linking tokens to policies. You can use them during the authorization process to automatically generate a policy for specific services. The policy is linked to the role or token, allowing the services to be discovered and to discover other healthy service instances in a service mesh.

Service identities enable you to quickly construct policies for services, rather than creating identical polices for each service.

Refer to the following topics for additional information about service identities:

Node Identities

Node identities are configuration blocks that you can add to role configurations or specify when linking tokens to policies. You can use them during the authorization process to automatically generate a policy for specific nodes. When you configure the agent, you can specify the token linked to the policy with acl_tokens_agent.

Use node identities to quickly construct policies for multiple nodes, rather than creating identical polices for each individual node.

Refer to the following topics for additional information about node identities: