vault_list
List secrets stored at a specified path in HashiCorp Vault to discover available data and manage access to sensitive information.
Instructions
List secrets at the specified path in Vault
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path to list secrets from (e.g., 'secret/metadata') |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path to list secrets from (e.g., 'secret/metadata')",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}