Elasticsearch database secrets engine
Note: This engine can use external X.509 certificates as part of TLS or signature validation. Verifying signatures against X.509 certificates that use SHA-1 is deprecated and is no longer usable without a workaround starting in Vault 1.12. See the deprecation FAQ for more information.
Elasticsearch is one of the supported plugins for the database secrets engine. This plugin generates database credentials dynamically based on configured roles for Elasticsearch.
See the database secrets engine docs for more information about setting up the database secrets engine.
Capabilities
Plugin Name | Root Credential Rotation | Dynamic Roles | Static Roles | Username Customization |
---|---|---|---|---|
elasticsearch-database-plugin | Yes | Yes | Yes (1.6+) | Yes (1.8+) |
Getting started
To take advantage of this plugin, you must first enable Elasticsearch's native realm of security by activating X-Pack. These instructions will walk you through doing this using Elasticsearch 7.1.1.
Enable X-Pack security in elasticsearch
Read Securing the Elastic Stack and follow its instructions for enabling X-Pack Security.
Enable encrypted communications
This plugin communicates with Elasticsearch's security API. ES requires TLS for these communications so they can be encrypted.
To set up TLS in Elasticsearch, first read encrypted communications and go through its instructions on encrypting HTTP client communications.
After enabling TLS on the Elasticsearch side, you'll need to convert the .p12 certificates you generated to other formats so they can be used by Vault. Here is an example using OpenSSL to convert our .p12 certs to the pem format.
Also, on the instance running Elasticsearch, we needed to install our newly generated CA certificate that was originally in the .p12 format.
We did this by converting the .p12 CA cert to a pem, and then further converting that
pem to a crt, adding that crt to /usr/share/ca-certificates/extra
,
and using sudo dpkg-reconfigure ca-certificates
.
The above instructions may vary if you are not using an Ubuntu machine. Please ensure you're using the methods specific to your operating environment. Describing every operating environment is outside the scope of these instructions.
Set up passwords
When done, verify that you've enabled X-Pack by running $ $ES_HOME/bin/elasticsearch-setup-passwords interactive
. You'll
know it's been set up successfully if it takes you through a number of password-inputting steps.
Create a role for Vault
Next, in Elasticsearch, we recommend that you create a user just for Vault to use in managing secrets.
To do this, first create a role that will allow Vault the minimum privileges needed to administer users and passwords by performing a
POST to Elasticsearch. To do this, we used the elastic
vaultuser whose password we created in the
$ $ES_HOME/bin/elasticsearch-setup-passwords interactive
step.
Next, create a user for Vault associated with that role.
The contents of data.json
in this example are:
Now, Elasticsearch is configured and ready to be used with Vault.
Setup
Enable the database secrets engine if it is not already enabled:
By default, the secrets engine will enable at the name of the engine. To enable the secrets engine at a different path, use the
-path
argument.Configure Vault with the proper plugin and connection information:
Usage
After the secrets engine is configured, configure dynamic and static roles to enable generating credentials.
Dynamic Roles
Dynamic roles generate new credentials for every request.
Configure a role that maps a name in Vault to a role definition in Elasticsearch. This is considered the most secure type of role because nobody can perform a privilege escalation by editing a role's privileges out-of-band in Elasticsearch:
Alternatively, configure a role that maps a name in Vault to a pre-existing role definition in Elasticsearch:
Generate a new credential by reading from the
/creds
endpoint with the name of the role:
Static Roles
Static roles return the same credentials for every request. The credentials are rotated based on the schedule provided.
Configure a static role that maps a name in Vault to a pre-existing user in Elasticsearch:
Retrieve the current username and password from the
/static-creds
endpoint:
API
The full list of configurable options can be seen in the Elasticsearch database plugin API page.
For more information on the database secrets engine's HTTP API please see the Database secrets engine API page.