Storing Gossip Encryption Key in Vault

    1. Store the secret in Vault.
    2. Create a Vault policy that authorizes the desired level of access to the secret.

    Setup per Consul datacenter

    1. Create Vault Kubernetes auth roles that link the policy to each Consul on Kubernetes service account that requires access.
    2. 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:

    1. Read and completed the steps in the section of Vault as a Secrets Backend.
    2. Read the section of Vault as a Secrets Backend.

    First, generate and store the gossip key 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.gossipEncryption.secretName Helm value.

    Next, we will need to create a policy that allows read access to this secret:

    1. path "secret/data/consul/gossip" {
    2. }

    gossip-policy.hcl

    1. path "secret/data/consul/gossip" {
    2. capabilities = ["read"]
    3. }

    Apply the Vault policy by issuing the vault policy write CLI command:

    1. $ vault policy write gossip-policy gossip-policy.hcl

    Next, we will create Kubernetes auth roles for the Consul server and client:

    1. $ vault write auth/kubernetes/role/consul-server \
    2. bound_service_account_names=<Consul server service account> \
    3. bound_service_account_namespaces=<Consul installation namespace> \
    4. policies=gossip-policy \
    5. ttl=1h
    1. bound_service_account_names=<Consul server service account> \
    2. bound_service_account_namespaces=<Consul installation namespace> \
    3. policies=gossip-policy \
    4. ttl=1h
    1. $ vault write auth/kubernetes/role/consul-client \
    2. bound_service_account_names=<Consul client service account> \
    3. bound_service_account_namespaces=<Consul installation namespace> \
    4. ttl=1h
    1. $ vault write auth/kubernetes/role/consul-client \
    2. bound_service_account_names=<Consul client service account> \
    3. bound_service_account_namespaces=<Consul installation namespace> \
    4. policies=gossip-policy \
    5. ttl=1h

    To find out the service account names of the Consul server and client, you can run the following commands with your Consul on Kubernetes values file:

      1. $ helm template --release-name ${RELEASE_NAME} -s templates/server-serviceaccount.yaml hashicorp/consul
    • Generate Consul client service account name

      1. $ helm template --release-name ${RELEASE_NAME} -s templates/client-serviceaccount.yaml hashicorp/consul
      1. $ helm template --release-name ${RELEASE_NAME} -s templates/client-serviceaccount.yaml hashicorp/consul

    Update the Consul on Kubernetes helm chart

    Now that we’ve configured Vault, you can configure the Consul Helm chart to use the gossip key in Vault:

    1. global:
    2. secretsBackend:
    3. vault:
    4. enabled: true
    5. consulServerRole: consul-server
    6. consulClientRole: consul-client
    7. gossipEncryption:
    8. secretKey: key

    values.yaml