MongoDB Atlas Secrets Engine
The MongoDB Atlas Secrets Engine generates Programmatic API keys for MongoDB Atlas. This allows one to manage the lifecycle of these MongoDB Atlas secrets through Vault. The created MongoDB Atlas secrets are time-based and are automatically revoked when the Vault lease expires, unless renewed. Vault will create a Programmatic API key for each lease scoped to the MongoDB Atlas project or organization denoted with the included role(s). An IP Whitelist may also be configured for the Programmatic API key with desired IPs and/or CIDR blocks.
The MongoDB Atlas Programmatic API Key Public and Private Key is returned to the caller. To learn more about Programmatic API Keys visit the Programmatic API Keys Doc.
Configure Connection
In addition to the parameters defined by the Secrets Engines Backend, this plugin has a number of parameters to further configure a connection.
Method | Path |
---|---|
POST | /mongodbatlas/config |
Parameters
public_key
(string: <required>)
– The Public Programmatic API Key used to authenticate with the MongoDB Atlas API.private_key
(string: <required>)
- The Private Programmatic API Key used to connect with MongoDB Atlas API.
Sample Payload
Sample Request
Create/Update Programmatic API Key role
Programmatic API Key credential types create a Vault role to generate a Programmatic API Key at either the MongoDB Atlas Organization or Project level with the designated role(s) for programmatic access. If a role with the name does not exist, it will be created. If the role exists, it will be updated with the new attributes.
Method | Path |
---|---|
POST | /roles/:name |
Parameters
name
(string <required>)
- Unique identifier name of the role nameorganization_id
(string <required>)
- Unique identifier for the organization to which the target API Key belongs. Use the orgs endpoint to retrieve all organizations to which the authenticated user has access. Required ifproject_id
is not set.project_id
(string <required>)
- Unique identifier for the project to which the target API Key belongs. Use the projects endpoint to retrieve all organizations to which the authenticated user has access. Required iforganization_id
is not set.roles
(list [string] <required>)
- List of roles that the API Key needs to have. If the roles array is provided:IMPORTANT: Provide at least one role. Make sure all roles must be valid for the Organization or Project.
NOTE: Include all roles that you want this API Key to have. Any roles not in this array are removed.
ip_addresses
(list [string] <Optional>)
- IP address to be added to the whitelist for the API key. This field is mutually exclusive with the cidrBlock field.cidr_blocks
(list [string] <Optional>)
- Whitelist entry in CIDR notation to be added for the API key. This field is mutually exclusive with the ipAddress field.
Sample Payload
Sample Response
Read Programmatic API Key role
Method | Path |
---|---|
GET | /roles/:name |
Parameters
name
(string <required>)
- Unique identifier name of the role name
Sample Payload
Sample Response
List Programmatic API Key role
Method | Path |
---|---|
GET | /roles |
Sample Payload
Sample Response
Delete Programmatic API Key role
Method | Path |
---|---|
DELETE | /roles/:name |
Parameters
name
(string <required>)
- Unique identifier name of the role name
Sample Payload
Read Credential
Method | Path |
---|---|
GET | /creds/:name |
Parameters
name
(string <required>)
- Unique identifier name of the credential
Sample Request
Sample Response