Automatically Rotate Gossip Encryption Keys Secured in Vault
To configure your Consul datacenter for production use, one of the necessary steps is to enable gossip encryption for all the agents in the datacenter. The process is explained in detail in the Secure Gossip Communication with Encryption tutorial.
Once the gossip communication is secured with a symmetric key, our recommended best practice is to define a policy for rotating the gossip keys based on a defined interval that meets your needs. You can review how to perform this process manually in the Rotate Gossip Encryption Keys in Consul tutorial.
In this tutorial, you will integrate Consul with HashiCorp's Vault and consul-template to securely store and rotate your encryption key. This tutorial will guide you through the entire process including:
- Creating the gossip encryption key.
- Connecting to a Vault instance.
- Initializing a key value store.
- Storing and retrieving the encryption key from Vault.
- Configuring consul-template to retrieve the key and then use a script to rotate it.
- Starting consul-template.
This tutorial will provide an example custom script with consul-template to automatically rotate the encryption key. You can use the script as a starting point to create your own rotation automation.
Prerequisites
Consul: to complete this tutorial, you can use a local Consul dev agent or an existing Consul deployment. You will need to have gossip encryption already enabled for the datacenter.
Vault: this tutorial assumes you have a running Vault cluster in your network. You can use a local Vault dev server or an existing Vault deployment.
consul-template: to interact with your Consul agent you will need to install the
consul-template
binary on a node. To rotate gossip keys you need the binary to be installed on one node only; changes will be automatically propagated across the Consul datacenter. Refer to the Consul Template tutorial to learn how to install and useconsul-template
.
The diagram below shows the minimal architecture needed to demonstrate the functionality.
Launch Terminal
This tutorial includes a free interactive command-line lab that lets you follow along on actual cloud infrastructure.
Security Warning
This tutorial is not for production use. By default, the lab will install an unsecured configuration of Consul.
Generate a encryption key
You can use Consul's consul keygen
command to generate the encryption key.
Configure Vault
Vault provides a kv
secrets engine that can be used to store arbitrary secrets. You will use this engine to store the encryption key.
Before you can initialize the secrets engine, you need to set the VAULT_ADDR
and VAULT_TOKEN
environment variables so that you can connect to your local instance of Vault.
The VAULT_ADDR
environment variable should be set to the target Vault server address you want to connect to.
The VAULT_TOKEN
environment variable should store your client token (e.g. root
).
Initialize the Vault secrets engine
For this tutorial, you will use the Vault KV secrets engine. First, enable key/value v2 secrets engine (kv-v2
).
Once the secret engine is enabled, verify it is functioning properly using the following command.
Store the encryption key in Vault
Tip
Vault's KV secrets engine does not enforce TTLs for expiration. Instead, the lease_duration
value can be used as a hint to consumers for how often they should check back for a new value. You can change the ttl
value or not use it, however, if you want to integrate with consul-template, you must define a TTL so that consul-template can know when to check for new versions of the key.
Encryption key TTL tuning
In this tutorial, the TTL for the encryption key is being set to 1 hour, meaning that the key will be valid only for 1 hour before expiring. You can try using a shorter TTL in a test environment to ensure keys are revoked properly after the TTL has expired.
Retrieve the gossip encryption key from Vault
Once the key is stored in Vault, you can retrieve it from any machine that has access to Vault.
From your Consul server node, use the vault kv get
command with the -field
parameter to retrieve the
key value only.
Once you retrieved the encryption key from Vault you can use it to configure your new Consul datacenter or to rotate the key to an already existing datacenter with gossip encryption enabled.
The process of key rotation should be automated when possible and the next paragraph will show you how to use consul-template
to automate the process.
Rotate the gossip encryption key with consul-template
You can use consul-template in your Consul datacenter to integrate with Vault's KV secrets engine and dynamically rotate Consul's gossip encryption keys.
You will create Go templates that consul-template can use
to retrieve the key from Vault.
For this tutorial, you will place these templates under /opt/consul/templates
.
First, configure consul-template to retrieve the key from Vault at every change.
To achieve this, write a template file that will define what you want to retrieve from Vault and which part of the secret you need. This template will be used in the consul-template configuration.
Create a template file
Create a file named gossip.key.tpl
under /opt/consul/templates
with the following content.
The template will interact with Vault using the kv-v2/data/consul/config/encryption
path and will only retrieve the key
value for the secret at that path.
Create the consul-template configuration
Next, write a configuration file for consul-template that uses the template you created. The configuration will execute the the template and render a file locally on your machine.
Create a file named consul_template.hcl
under /opt/consul/templates
with the following content.
Write a rotation script
The last line of the configuration file refers to a script, located at /opt/rotate_key.sh
, that will run every time a new key is retrieved from Vault.
You can use the following example to create your own rotation script.
Start consul-template
Finally, you can start consul-template using the configuration file consul_template.hcl
.
The command will start consul-template as a long running daemon and it will keep listening for changes on Vault.
Rotate the Consul encryption key
Once you have started the process, every time you update the key value in Vault, consul-template
will make sure that the key is installed in Consul too.
You can now use the vault kv put
command to change the encryption key.
The script will pick up the gossip.key
file containing the new key and use it to rotate the Consul gossip encryption key.
It should output the following lines.
You can test the key is actually changed in Consul using the consul keyring
command:
Next steps
In this tutorial, you learned how to use Vault KV secrets engine to store a Consul gossip encryption key and to automate gossip encryption key rotation using consul-template.
To continue securing your datacenter leveraging Vault, refer to the Generate mTLS Certificates for Consul with Vault tutorial.
To learn how to create Consul tokens using Vault, refer to the Generate Consul Tokens with HashiCorp Vault tutorial.