doppler_get_secret
Retrieve a specific secret value from Doppler's secret management platform by specifying the project, config, and secret name for secure access.
Instructions
Get a specific secret value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | Yes | The config/environment name | |
name | Yes | The secret name to retrieve | |
project | Yes | The Doppler project name |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "The config/environment name",
"type": "string"
},
"name": {
"description": "The secret name to retrieve",
"type": "string"
},
"project": {
"description": "The Doppler project name",
"type": "string"
}
},
"required": [
"project",
"config",
"name"
],
"type": "object"
}