Storing the ACL Replication Token in Vault
To use an ACL replication token stored in Vault, we will follow the steps outlined in the Data Integration section:
- Store the secret in Vault.
- Create a Vault policy that authorizes the desired level of access to the secret.
Setup per Consul datacenter
- Create Vault Kubernetes auth roles that link the policy to each Consul on Kubernetes service account that requires access.
- Update the Consul on Kubernetes helm chart.
Prior to setting up the data integration between Vault and Consul on Kubernetes, you will need to have:
- Read and completed the steps in the Systems Integration section of .
- Read the Data Integration Overview section of .
First, generate and store the ACL replication token in Vault:
Create a Vault policy that authorizes the desired level of access to the secret
Note: The secret path referenced by the Vault Policy below will be your global.acls.replicationToken.secretName
Helm value.
capabilities = ["read"]
}
replication-token-policy.hcl
path "secret/data/consul/replication-token" {
capabilities = ["read"]
}
Apply the Vault policy by issuing the vault policy write
CLI command:
$ vault policy write replication-token-policy replication-token-policy.hcl
Next, you will create Kubernetes auth roles for the Consul server-acl-init
job:
$ vault write auth/kubernetes/role/consul-server-acl-init \
bound_service_account_names=<Consul server service account> \
bound_service_account_namespaces=<Consul installation namespace> \
ttl=1h
$ vault write auth/kubernetes/role/consul-server-acl-init \
bound_service_account_names=<Consul server service account> \
bound_service_account_namespaces=<Consul installation namespace> \
policies=replication-token-policy \
ttl=1h
$ helm template --release-name ${RELEASE_NAME} -s templates/server-acl-init-serviceaccount.yaml hashicorp/consul
Update the Consul on Kubernetes helm chart
Now that you have configured Vault, you can configure the Consul Helm chart to use the ACL replication token key in Vault:
secretsBackend:
vault:
enabled: true
manageSystemACLsRole: consul-server-acl-init
replicationToken:
secretName: secret/data/consul/replication-token
secretKey: token
values.yaml
global:
secretsBackend:
vault:
enabled: true
manageSystemACLsRole: consul-server-acl-init
acls:
replicationToken:
secretName: secret/data/consul/replication-token
secretKey: token
Note that global.acls.replicationToken.secretName
is the path of the secret in Vault. This should be the same path as the one you included in your Vault policy. is the key inside the secret data. This should be the same as the key you passed when creating the ACL replication token secret in Vault.