ACL Policies
This topic describes policies, which are components in Consul's access control list (ACL) system. Policies define which services and agents are authorized to interact with resources in the network.
Introduction
A policy is a group of one or more ACL rules that are linked to ACL tokens. The following diagram describes the relationships between rules, policies, and tokens:
The term "policy" should not be confused with the keyword policy
. The keyword is a rule-level element that determines access to a resource (see Policy Dispositions).
Rules
Rules are one of several attributes that form a policy. They are building blocks that define access to resources.
This section describes about how to assemble rules into policies. Refer to the ACL Rules Reference for additional details about how to configure rules and how they affect access to resources.
Rule Specification
A rule is composed of a resource declaration and an access level defined with the policy
keyword and a policy disposition. The following syntax describes the basic structure of a rule:
Access to the specified resource is granted or denied based on the policy disposition.
Resource Labels
Many resources take an additional value that limits the scope of the rule to resources with the same label. A resource label can be the name of a specific set of resources, such as nodes configured with the same name
value.
The following syntax describes how to include a resource label in the rule:
Labels provide operators with more granular control over access to the resource, but the following resource types do not take a label:
Use the following syntax to create rules for these resources:
Policy Dispositions
Use the policy
keyword and one of the following access levels to set a policy disposition:
read
: Allows the resource to be read but not modified.write
: Allows the resource to be read and modified.deny
: Denies read and write access to the resource.
The special list
access level provides access to all keys with the specified resource label in the Consul KV. The list
access level can only be used with the key_prefix
resource. The acl.enable_key_list_policy
setting must be set to true
.
Matching and Prefix Values
You can define rules for labeled resources based on exact matches or by using resource prefixes to match several resource labels beginning with the same value. Matching resource labels on exact values is described in the Resource Labels section.
The following example rule is an exact match that denies access to services labeled web-prod
:
You can append the resource with _prefix
to match all resource labels beginning with the same value. The following example rule allows write
access to all services with labels that begin with "web":
Prefix-based resource labels can also contain an empty string, which configures the rule to apply to all resources of the declared type. The following example rule allows read
access to all service
resources:
When using prefix-based rules, the most specific prefix match determines the action. In a real-world scenario, a combination of rules would be combined to create a flexible policy. Each team or business unit would use tokens based on policies that enforce several rules, for example:
- A rule that denies access to a specific resource label
- A prefix-based rule that allows write access to a class of resources
- An empty prefix that grants read-only access to all resources within the declared class
Matching Precedence
Exact matching rules will only apply to the exact resource specified. The order of precedence for matching rules are:
Policy Format
Define policies using the HashiCorp Configuration Language (HCL). HCL is human readable and interoperable with JSON, making it easy to automate policy generation. The following examples show the same policy formatted in HCL and JSON:
Rule Scope
The rules from all policies, including roles and service identities, linked with a token are combined to form that token's effective rule set.
Policy rules can be defined in either an allowlist
or denylist
mode, depending on the configuration of the acl_default_policy
.
If the default policy is configured to deny access to all resources, then you can specify allowlist
in policy rules to explicitly allow access to resources.
Conversely, if the default policy is configured to allow access to all resources, then you can specify denylist
in policy rules to explicitly deny access to resources.
Implementing Policies
After defining policies, the person responsible for administrating ACLs in your organization can implement them through the command line or by calling the ACL HTTP API endpoint and including rules in the payload.
Command Line
Use the consul acl policy
command to manage policies. Refer to the ACL command line documentation for details.
The following example creates a policy called my-app-policy
and applies the rules defined in rules.hcl
:
Note that the command must present a token with permissions to use the ACL system. If the command is issued successfully, the console wil print information about the policy:
You can can define several attributes that attach additional metadata and specify the scope of the policy. See Policy Attributes for details.
HTTP API Endpoint
The endpoint takes data formatted in HCL or JSON. Refer to the ACL HTTP API endpoint documentation for details about the API.
The following example adds a set of rules to a policy called my-app-policy
. The policy defines access to the key
resource (Consul K/V). The rules are formatted in HCL, but they are wrapped in JSON so that the data can be sent using cURL:
The following call performs the same operation as the previous example using JSON:
The policy configuration is returned when the call is successfully performed:
Linking Policies to Tokens
A policy that has been implemented must still be linked to a token before the policy has an effect. A service or agent presents the token when interacting with resources in the network. The ACL system processes evaluate the policies linked to the token to determine if the requester has access to the requested resource.
The person responsible for administrating ACLs can use the command line or call the API endpoint to link policies to tokens. Tokens can also be generated dynamically from an external system using Consul's auth methods functionality.
Refer to the tokens documentation, as well as the ACL tutorial, for details about creating and linking policies to tokens.
Policy Attributes
Policies may have several attributes that enable you to perform specific functions. For example, you can configure the policy's scope by specifying the name of a datacenter, namespace (Consul Enterprise), or administrative partition (Consul Enterprise) when interacting or creating policies.
Additional metadata, such as the values of the ID
and name
fields, provide handles for updating and managing policies.
Refer to the following topics for additional information:
ACL policies can have the following attributes:
Attribute | Description | Required | Default |
---|---|---|---|
ID | The policy's public identifier. Present the ID (or the name ) value when interacting with policies. You can specify a value when creating policies or use the value auto-generated by Consul. | N/A | N/A |
name | Unique name for the policy. | Required | none |
description | Human readable description of the policy. | Optional | none |
rules | Set of rules granting or denying permissions. See the Rule Specification documentation for more details. | Optional | none |
datacenter | Datacenter in which the policy is valid. More than one datacenter can be specified. | Optional | none |
namespace | Enterprise Namespace in which the policy is valid. Added in Consul Enterprise 1.7.0. | Optional | default |
partition | Enterprise Admin partition in which the policy is valid. Added in Consul Enterprise 1.11.0 | Optional | default |
Non-default Namespaces and Partitions - Rules defined in a policy tied to an namespace or admin partition other than default
can only grant a subset of privileges that affect the namespace or partition. See Namespace Rules and Admin Partition Rules for additional information.
You can view the current ACL policies on the command line or through the API. The following example demonstrates the command line usage:
The Hash
, CreateIndex
, and ModifyIndex
attributes are also printed. These attributes are printed for all responses and are not specific to ACL policies.
Built-in Policies
New installations of Consul ship with the following built-in policies.
Global Management
The global-management
policy grants unrestricted privileges to any token linked to it. The policy is assigned the reserved ID of 00000000-0000-0000-0000-000000000001
. You can rename the global management policy, but Consul prevents you from modifying any other attributes, including the rule set and datacenter scope.
Global Read-Only
The builtin/global-read-only
policy grants unrestricted read-only privileges to any token linked to it. The policy is assigned the reserved ID of 00000000-0000-0000-0000-000000000002
. You can rename the global read-only policy, but Consul prevents you from modifying any other attributes, including the rule set and datacenter scope.
Namespace Management Enterprise
The namespace-management
policy will be injected into all namespaces you create. The policy will be assigned a randomized UUID and can be managed as a normal, user-defined policy within the namespace. This feature was added in Consul Enterprise 1.7.0.
Example Policies
This section includes example policy configurations for achieving specific use-cases.
Enable the Snapshot Agent to Run on a Specific Node
The consul snapshot agent
command starts a process that takes snapshots of the state of the Consul servers and either saves them locally or pushes them to a remote storage service. Refer to Consul Snapshot Agent for additional information.
In the following example, the ACL policy enables the snapshot agent to run on a node named server-1234
.
Enable Vault to Access the Consul Storage Backend
If you are using Vault to manage secrets in your infrastructure, you can configure Vault to use Consul's key/value (KV) store as backend storage to persist Vault's data. Refer to the Consul KV documentation and the Vault storage documentation for additional information.
In the following example, the ACL policy enables Vault to register as a service
and provides access to the vault/
path in Consul's KV store.