doppler_promote_secrets
Transfer secrets between environments in a Doppler project, specifying source and target configurations while optionally excluding specific keys.
Instructions
Promote secrets from one environment to another
Input Schema
Name | Required | Description | Default |
---|---|---|---|
excludeKeys | No | Keys to exclude from promotion | |
project | Yes | The Doppler project name | |
sourceConfig | Yes | Source config/environment | |
targetConfig | Yes | Target config/environment |
Input Schema (JSON Schema)
{
"properties": {
"excludeKeys": {
"description": "Keys to exclude from promotion",
"items": {
"type": "string"
},
"type": "array"
},
"project": {
"description": "The Doppler project name",
"type": "string"
},
"sourceConfig": {
"description": "Source config/environment",
"type": "string"
},
"targetConfig": {
"description": "Target config/environment",
"type": "string"
}
},
"required": [
"project",
"sourceConfig",
"targetConfig"
],
"type": "object"
}