Integrate HashiCorp Vault

Procedure

  1. Log in to your HashiCorp Vault account.

  2. Create a policy:

    1. Select Policies.

    2. Create a new policy with the following permissions:

      path "*"
      {
        capabilities = ["read","list"]
      }
      
      path "auth/token/renew-self"
      {
        capabilities = ["update"]
      }
      
      path "auth/token/create"
      {
        capabilities = ["update", "create"]
      }   
  3. Create a userpass auth method:

    1. Select Access.

    2. Enable a new method type of userpass.

  4. Create a User.

  5. Attach the policy to the user created.

Last updated