Elasticsearch Database Plugin HTTP API
The Elasticsearch database plugin is one of the supported plugins for the database secrets engine. This plugin generates credentials dynamically based on configured roles for Elasticsearch.
Configure Connection
In addition to the parameters defined by the Database Backend, this plugin has a number of parameters to further configure a connection.
Method | Path |
---|---|
POST | /database/config/:name |
Parameters
url
(string: <required>)
- The URL for Elasticsearch's API ("http://localhost:9200").username
(string: <required>)
- The username to be used in the connection URL ("vault").password
(string: <required>)
- The password to be used in the connection URL ("pa55w0rd").ca_cert
(string: "")
- The path to a PEM-encoded CA cert file to use to verify the Elasticsearch server's identity.ca_path
(string: "")
- The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity.client_cert
(string: "")
- The path to the certificate for the Elasticsearch client to present for communication.client_key
(string: "")
- The path to the key for the Elasticsearch client to use for communication.tls_server_name
(string: "")
- This, if set, is used to set the SNI host when connecting via 1TLS.insecure
(bool: false)
- Not recommended. Default to false. Can be set to true to disable SSL verification.username_template
(string)
- Template describing how dynamic usernames are generated.
Sample Payload
Sample Request
Statements
Statements are configured during role creation and are used by the plugin to determine what is sent to the database on user creation, renewing, and revocation. For more information on configuring roles see the Role API in the database secrets engine docs.
Parameters
The following are the statements used by this plugin. If not mentioned in this list the plugin does not support that statement type.
creation_statements
(string: <required>)
– Using JSON, either defines anelasticsearch_role_definition
or a group of pre-existingelasticsearch_roles
. The object specified by theelasticsearch_role_definition
is the JSON directly passed through to the Elasticsearch API, so you can pass through anything shown here. Forelasticsearch_roles
, add the names of the roles only. They must pre-exist in Elasticsearch. Defining roles in Vault is more secure than using pre-existing roles because a privilege escalation could be performed by editing the roles used out-of-band in Elasticsearch.
Sample Creation Statements