doppler_list_secrets
Retrieve all secret names within a specified project and config using the Doppler secret management platform, ensuring secure and organized access to sensitive data.
Instructions
List all secret names in a project/config
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | Yes | The config/environment name | |
project | Yes | The Doppler project name |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "The config/environment name",
"type": "string"
},
"project": {
"description": "The Doppler project name",
"type": "string"
}
},
"required": [
"project",
"config"
],
"type": "object"
}