MongoDB Database Secrets Engine
MongoDB is one of the supported plugins for the database secrets engine. This plugin generates database credentials dynamically based on configured roles for the MongoDB database and also supports Static Roles.
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 |
---|---|---|---|
mongodb-database-plugin | Yes | Yes | Yes |
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:
Configure a role that maps a name in Vault to a MongoDB command that executes and creates the database credential:
Usage
After the secrets engine is configured and a user/machine has a Vault token with the proper permission, it can generate credentials.
Generate a new credential by reading from the
/creds
endpoint with the name of the role:
Client x509 Certificate Authentication
This plugin supports using MongoDB's x509 Client-side Certificate Authentication
To use this authentication mechanism, configure the plugin:
Note: tls_certificate_key
and tls_ca
map to tlsCertificateKeyFile
and tlsCAFile
configuration options
from MongoDB with the exception that the Vault parameters are the contents of those files, not filenames. As such,
the two options are independent of each other. See the MongoDB Configuration Options
for more information.
Learn
Refer to Database Secrets Engine with MongoDB for a step-by-step tutorial.
API
The full list of configurable options can be seen in the MongoDB database plugin API page.
For more information on the database secrets engine's HTTP API please see the Database secrets engine API page.