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:

ACL system component relationships

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:

Basic syntax for configuring an ACL rule

Basic syntax for configuring an ACL rule

  1. <resource> {
  2. policy = "<policy disposition>"
  3. }
  1. {
  2. "<resource>": {
  3. "policy": "<policy disposition>"
  4. }
  5. }

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:

Syntax for applying an ACL rule to named resources

Syntax for applying an ACL rule to named resources

  1. <resource> "<label>" {
  2. policy = "<policy disposition>"
  3. }
  1. {
  2. "<resource>": {
  3. "<label>": {
  4. "policy": "<policy disposition>"
  5. }
  6. }
  7. }

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:

Syntax for resources that take ACL rule configurations directly

Syntax for resources that take ACL rule configurations directly

  1. <resource> = "<policy disposition>"
  1. {
  2. "<resource>": "<policy disposition>"
  3. }

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:

Example rule that denies access to services named ‘web-prod’

Example rule that denies access to services named ‘web-prod’

  1. service "web-prod" {
  2. policy = "deny"
  3. }
  1. {
  2. "service": {
  3. "web-prod": {
  4. "policy": "deny"
  5. }
  6. }
  7. }

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”:

Example rule that grants read and write access to services with names beginning with ‘web’

Example rule that grants read and write access to services with names beginning with ‘web’

  1. service_prefix "web" {
  2. policy = "write"
  3. }
  1. {
  2. "service_prefix": {
  3. "web": {
  4. "policy": "write"
  5. }
  6. }
  7. }

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:

Example rule that grants read access to all services

Example rule that grants read access to all services

  1. service_prefix "" {
  2. policy = "read"
  3. }
  1. {
  2. "service_prefix": {
  3. "": {
  4. "policy":"read"
  5. }
  6. }
  7. }

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:

  1. deny (highest priority)
  2. write
  3. read

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:

Example rules

Example rules

  1. # These control access to the key/value store.
  2. key_prefix "" {
  3. policy = "read"
  4. }
  5. key_prefix "foo/" {
  6. policy = "write"
  7. }
  8. key_prefix "foo/private/" {
  9. policy = "deny"
  10. }
  11. # Or for exact key matches
  12. key "foo/bar/secret" {
  13. policy = "deny"
  14. }
  15. # This controls access to cluster-wide Consul operator information.
  16. operator = "read"
  1. {
  2. "key_prefix": {
  3. "": {
  4. "policy": "read"
  5. },
  6. "foo/": {
  7. "policy": "write"
  8. },
  9. "foo/private/": {
  10. "policy": "deny"
  11. }
  12. },
  13. "key": {
  14. "foo/bar/secret": {
  15. "policy": "deny"
  16. }
  17. },
  18. "operator": "read"
  19. }

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:

  1. $ consul acl policy create -name "my-app-policy" -description "Human-readable description of my policy" -rules @rules.hcl -token "<token with ACL 'write' access>"

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:

  1. ID: <auto-generated ID>
  2. Name: my-app-policy
  3. Description: Human-readable description of my policy
  4. Datacenters: <specified with the -valid-datacenter option>
  5. Rules:
  6. <rules defined in the rules.hcl file>

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:

  1. $ curl \
  2. --request PUT \
  3. --header "X-Consul-Token: <token with ACL 'write' access>" \
  4. --data \
  5. '{
  6. "Name": "my-app-policy",
  7. "Rules": "key \"\" { policy = \"read\" } key \"foo/\" { policy = \"write\" } key \"foo/private/\" { policy = \"deny\" } operator = \"read\""
  8. }' http://127.0.0.1:8500/v1/acl/policy

The following call performs the same operation as the previous example using JSON:

  1. $ curl \
  2. --request PUT \
  3. --header "X-Consul-Token: <management token>" \
  4. --data \
  5. '{
  6. "Name": "my-app-policy",
  7. "Rules": "{\"key\":{\"\":{\"policy\":\"read\"},\"foo/\":{\"policy\":\"write\"},\"foo/private\":{\"policy\":\"deny\"}},\"operator\":\"read\"}"
  8. }' http://127.0.0.1:8500/v1/acl/policy

The policy configuration is returned when the call is successfully performed:

  1. {
  2. "CreateIndex": 7,
  3. "Hash": "UMG6QEbV40Gs7Cgi6l/ZjYWUwRS0pIxxusFKyKOt8qI=",
  4. "ID": "5f423562-aca1-53c3-e121-cb0eb2ea1cd3",
  5. "ModifyIndex": 7,
  6. "Name": "my-app-policy",
  7. "Rules": "key \"\" { policy = \"read\" } key \"foo/\" { policy = \"write\" } key \"foo/private/\" { policy = \"deny\" } operator = \"read\""
  8. }

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:

AttributeDescriptionRequiredDefault
IDThe 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/AN/A
nameUnique name for the policy.Requirednone
descriptionHuman readable description of the policy.Optionalnone
rulesSet of rules granting or denying permissions. See the Rule Specification documentation for more details.Optionalnone
datacenterDatacenter in which the policy is valid. More than one datacenter can be specified.Optionalnone
namespaceEnterprise Namespace in which the policy is valid. Added in Consul Enterprise 1.7.0.Optionaldefault
partitionEnterprise Admin partition in which the policy is valid. Added in Consul Enterprise 1.11.0Optionaldefault

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:

  1. $ consul acl policy list -format json -token <token_id>
  2. [
  3. {
  4. "ID": "56595ec1-52e4-d6de-e566-3b78696d5459",
  5. "Name": "b-policy",
  6. "Description": "",
  7. "Datacenters": null,
  8. "Hash": "ULwaXlI6Ecqb9YSPegXWgVL1LlwctY9TeeAOhp5HGBA=",
  9. "CreateIndex": 126,
  10. "ModifyIndex": 126,
  11. "Namespace": "default",
  12. "Partition": "default"
  13. },
  14. {
  15. "ID": "00000000-0000-0000-0000-000000000001",
  16. "Name": "global-management",
  17. "Description": "Builtin Policy that grants unlimited access",
  18. "Datacenters": null,
  19. "Hash": "W1bQuDAlAlxEb4ZWwnVHplnt3I5oPKOZJQITh79Xlog=",
  20. "CreateIndex": 70,
  21. "ModifyIndex": 70,
  22. "Namespace": "default",
  23. "Partition": "default"
  24. }
  25. ]

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 EnterprisePolicies - 图4Enterprise

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.

  1. # Required to read and snapshot ACL data
  2. acl = "write"
  3. # Allow the snapshot agent to create the key consul-snapshot/lock which will
  4. # serve as a leader election lock when multiple snapshot agents are running in
  5. # an environment
  6. key "consul-snapshot/lock" {
  7. policy = "write"
  8. }
  9. # Allow the snapshot agent to create sessions on the specified node
  10. session "server-1234" {
  11. policy = "write"
  12. }
  13. # Allow the snapshot agent to register itself into the catalog
  14. service "consul-snapshot" {
  15. policy = "write"
  16. }
  1. {
  2. "acl": "write",
  3. "key": {
  4. "consul-snapshot/lock": {
  5. "policy": "write"
  6. }
  7. },
  8. "session": {
  9. "server-1234": {
  10. "policy": "write"
  11. }
  12. },
  13. "service": {
  14. "consul-snapshot": {
  15. "policy": "write"
  16. }
  17. }
  18. }

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.

  1. # Provide KV visibility to all agents.
  2. agent_prefix "" {
  3. policy = "read"
  4. }
  5. # Enable resources prefixed with 'vault/' to write to the KV
  6. key_prefix "vault/" {
  7. policy = "write"
  8. }
  9. # Enable the vault service to write to the KV
  10. service "vault" {
  11. policy = "write"
  12. }
  13. # Enable the agent to initialize a new session.
  14. session_prefix "" {
  15. policy = "write"
  16. }
  1. {
  2. "agent_prefix": {
  3. "": {
  4. "policy": "read"
  5. }
  6. },
  7. "key_prefix": {
  8. "vault/": {
  9. "policy": "write"
  10. }
  11. },
  12. "service": {
  13. "vault": {
  14. "policy": "write"
  15. }
  16. },
  17. "session_prefix": {
  18. "": {
  19. "policy": "write"
  20. }
  21. }
  22. }