vault_delete
Remove secrets from HashiCorp Vault by specifying the storage path to permanently delete sensitive data and maintain security.
Instructions
Delete a secret from Vault at the specified path
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path to delete the secret from (e.g., 'secret/data/myapp') |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path to delete the secret from (e.g., 'secret/data/myapp')",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}