HCP Vault Dedicated performance replication
Note
Performance replication is available for the HCP Vault Dedicated Plus tier on both AWS and Azure.
What is HCP Vault Dedicated Performance Replication
Vault provides the critical services of identity management, secrets storage, and policy management. This functionality is expected to be highly available and to scale as the number of clients and their functional needs increase. At the same time, operators would like to ensure that a common set of policies are enforced globally, and a consistent set of secrets and keys are exposed to applications that need to interoperate. Vault Enterprise Performance Replication provides scalability across regions.
Replication operates on a primary/secondary model, wherein a primary cluster is linked to its secondary clusters. The primary cluster acts as the system of record and asynchronously replicates most Vault data to the secondary cluster. The secondary cluster mirrors the configuration of its primary cluster; however, it keeps track of its own tokens and leases.
If a user action modifies the underlying shared state, the secondary cluster forwards the request to the primary cluster to handle; this is transparent to the client. In practice, most high-volume workloads (reads in the kv backend, encryption/decryption operations in transit, etc.) can be satisfied by the local secondary, allowing Vault to scale relatively horizontally.
You can create up to five performance secondary clusters, but all clusters and their associated networks must be created in the same cloud provider.
Tip
If you have already reached your overall cluster quota, you will not be able to create additional secondary clusters. If you need to increase the overall quota, please follow the process to request additional resources.
Scenario introduction
In this tutorial, you are going to create an HCP Vault Dedicated primary cluster in the US East region, and the secondary cluster in the US West region.
Prerequisites
- An HCP account with appropriate permissions to initiate this change.
- If you are new to Vault Dedicated, go through the Getting Started with HCP Vault Dedicated tutorials.
- Install Vault on your local machine.
Create HashiCorp Virtual Networks
Create HashiCorp Virtual Networks (HVNs) in the US East region and the US West region before creating Vault Dedicated clusters.
Launch the HCP Portal and login.
Click HashiCorp Virtual Network, and click Create network.
At the Create a HashiCorp Virtual Network page, enter
hvn-us-east-1
in the Network name field.Select Amazon Web Services as the provider.
Select N. Virginia (us-east-1) from the Region selection drop-down list.
Accept the default CIDR block of
172.25.16.0/20
.Network consideration
The HashiCorp Virtual Network CIDR block should not overlap with your existing private network address space or with other HVNs.
Click Create network. This takes a few minutes.
Click Back to Networks.
From the HashiCorp Virtual Network page, click Create network again.
Enter
hvn-us-west-2
in the Network name field.Select Amazon Web Services as the provider.
Select Oregon (us-west-2) from the Region selection drop-down list.
Enter
172.24.16.0/20
in the CIDR block field.Network consideration
The IP addresses should not overlap between
hvn-us-east-1
andhvn-us-west-2
. Since the CIDR forhvn-us-east-1
was 172.25.16.0/20, set the CIDR forhvn-us-west-2
to 172.24.16.0/20.Click Create network. Wait until the HVN creation completes.
Click Back to Networks in the left navigation menu to view the HVNs.
Create a primary cluster
Note
This step creates a new HCP Vault Dedicated custer. You can enable performance replication on an already existing cluster instead. However, the cluster must be a Plus tier cluster. If not, change the cluster to Plus first.
Click Vault in the left navigation menu, and click the Create cluster button.
Select the cloud Provider that you used when creating the HVN.
Under the Vault tier section, click the pull down menu and select Plus.
Under the Network section select hvn-us-east-1.
Under the Cluster accessibility section, select Public.
Security consideration
When an HCP Vault Dedicated cluster has public access enabled, you can connect to Vault from any internet connected device. For the ease of completing this tutorial, you enable public access. If your use case requires public access to be enabled, we recommend configuring the IP allow list to limit which IPv4 public IP addresses or CIDR ranges can connect to Vault to limit the attack surface.
When the HCP Vault Dedicated cluster has private access enabled you will need to access the cluster from a connected cloud provider such as AWS with a VPC peering connection, a AWS transit gateway connection, or Azure with a Azure Virtual Network peering connection. For the purposes of this tutorial, your cluster should have public access enabled.
Enter
vault-cluster-primary
in the Cluster ID field.Keep all other settings as the default and click the Create cluster button.
Tip
Wait for the cluster to initialize before proceeding.
Create sample data
To demonstrate the replication capabilities you will create two namespaces and enable the key/value v2 secrets engine.
Under Cluster URLs, click Public Cluster URL.
In a terminal, set the
VAULT_ADDR
environment variable to the copied address.Return to the Overview page and click Generate token.
Within a few moments, a new token will be generated.
Copy the Admin Token.
Return to the terminal and set the
VAULT_TOKEN
environment variable.Set the
VAULT_NAMESPACE
environment variable toadmin
.Create a namespace named
replicate-namespace
.Enable the K/V v2 secrets engine in the
replicate-namespace
namespace with the pathreplicate-secrets
.Enable the K/V v2 secrets engine in the
replicate-namespace
namespace with the pathdo-not-replicate-secrets
.List the enabled secrets engines in the
replicate-namespace
namespace.Create a second namespace named
do-not-replicate-namespace
.
Create a performance secondary cluster
From the Vault overview page, click Replication in the left navigation menu. If the navigation menu does not appear, refresh the page.
Click Set up replication.
In the Create a Vault replication secondary page, enter
vault-cluster-secondary
in the Cluster ID field.Select
hvn-us-west-2
under HashiCorp Virtual Network.Observe the Replication paths filter switch.
By default, all namespaces and mount paths will be replicated to the secondary cluster.
Click the Replicate all namespace and mount paths switch. The Deny access to the following namespaces and mount paths text box will appear.
In the text box enter
do-not-replicate-namespace
and click the Add button.This will prevent the
do-not-replicate-namespace
namespace you created earlier from being replicated to the secondary cluster, including any mount paths in the namespace.A second text box will appear. Enter
replicate-namespace/do-not-replicate-secrets
and click the Add button.This will prevent the K/V v2 secret engine you enabled earlier from being replicated to the secondary cluster, even though its parent namespace is being replicated.
Click Create cluster. Wait for the cluster creation to complete.
Validate cluster replication
Once the vault-cluster-secondary
cluster deployment completes, verify the sample data
you created was replicated as expected.
When the cluster status changes to Running, click the vault-cluster-secondary link.
In the Configuration pane, click the Public Cluster URL.
In the terminal you previously set the
VAULT_ADDR
environment variable, update theVAULT_ADDR
to the copied address for the secondary cluster.Return to the Overview page and click Generate token.
Within a few moments, a new token will be generated.
Copy the Admin Token.
Update the
VAULT_TOKEN
environment variable to store the token value for the secondary cluster.View the list of namespaces available in the secondary cluster.
The
do-not-replicate-namespace
namespace was not replicated to the secondary cluster because you added the namespace path to the deny filter.View the list of secrets engines available in the
replicate-namespace
.The
do-not-replicate-secrets
K/V secret engine was not replicated, even though the namespace was replicated because you added the secret engine path to the deny filter.
Local secrets engines and auth methods
You can also enable secrets engines and/or auth methods locally if you want to disallow them from being replicated across the clusters.
Enable an auth method via CLI
To enable a local secrets engine or auth method via Vault
CLI, use the -local
flag.
Example: The following command enables the AppRole auth method locally at
us_east_approle
path. This auth method configuration will not be replicated
to other clusters within the replication group.
Delete clusters
A primary cluster can not be deleted while it has an active secondary cluster. The secondary cluster needs to be deleted before deleting the primary cluster.
From the Vault page, click vault-cluster-secondary.
In the Overview page, click Manage > Delete cluster.
When prompted to confirm, enter
DELETE
in the text field and click Delete. Wait until the cluster deletion completes.Repeat the steps to delete the primary cluster (
vault-cluster-primary
).
After clusters are deleted, you can delete the HVNs as well.
Note
A primary cluster can not be deleted or scaled below Plus tier while it still has an active secondary cluster. A secondary cluster would need to be deleted before the primary could be deleted or scaled below Plus.