Credential stores
A credential store is a resource that can retrieve, store, and potentially generate credentials of differing types and differing access levels. It belongs to a project and supports the principle of least privilege by providing mechanisms to limit the credentials it can access to the minimum necessary for the project it is in. A credential store can also contain credential libraries.
Attributes
A credential store has the following configurable attributes:
name
- (optional) If set, thename
must be unique within the credential store's project.description
- (optional)
Vault credential store attributes
A Vault credential store has the following additional attributes:
address
- (required) The address of the Vault server. This should be a complete URL such ashttps://127.0.0.1:8200
.token
- (required) A token used for accessing Vault. This token must meet the Vault token requirements described below. Each Vault credential store must be configured with a unique Vault token.ca_cert
- (optional) A PEM-encoded CA certificate to verify the Vault server's TLS certificate.tls_server_name
- (optional) Name to use as the SNI host when connecting to Vault via TLS.tls_skip_verify
- (optional) Disable verification of TLS certificates. Using this option is highly discouraged as it decreases the security of data transmissions to and from the Vault server.client_certificate
- (optional) A PEM-encoded client certificate to use for TLS authentication to the Vault server.client_certificate_key
- (optional) A PEM-encoded private key matching the client certificate fromclient_certificate
.namespace
- (optional) A Vault namespace. Requires Vault Enterprise.worker_filter
HCP/ENT - (optional) A filter used to control which workers can handle Vault requests. This allows the use of private Vault instances with Boundary. Workers deployed in the same network as a private Vault instance can access and relay Vault requests to Boundary controllers. ~> Note: A worker that matches the worker filter must exist before defining the Vault credential store, as it will perform the Vault calls needed to set up the credential store with Boundary.
Static credential store attributes
A static credential store has no type-specific attributes.
Referenced by
Service API docs
The following services are relevant to this resource:
Vault token requirements
Each Vault credential store must be configured with a unique Vault token. The Vault tokens for all credential stores must be periodic, renewable, and an orphan. All tokens must also have the capabilities of the Vault Boundary Controller Policy described below.
Vault policies
The credential store's token must have the capabilities to issue credentials for each of it's credential libraries plus the capabilities of the Vault Boundary Controller Policy described below.
We recommend creating a unique Vault policy for each Vault credential store that grants the minimum set of permissions needed by the credential store's libraries. We also recommend the Vault Boundary Controller Policy be kept distinct from any other Vault policies. This allows each credential store to have a token that is configured with two polices: one shared by all credential stores and one unique to that credential store. This also allows a credential store to be created with the minimum permissions necessary at any point in time. The policy unique to a credential store can then be updated as needed when credential libraries are added and removed from the credential store.
Vault Boundary controller policy
The token Boundary receives must have the capabilities listed below. An explanation for the use of each capability is given.
The above boundary-controller
policy is
available for download. Below is an example of writing this policy to Vault:
Static credential store
A static credential store allows user-supplied credentials to be managed by Boundary. Credentials are encrypted and stored directly in Boundary. Currently, the static credential store can hold credentials of type username_password
.