vault_read
Retrieve secrets from HashiCorp Vault using secure token authentication. Access stored credentials and sensitive data by specifying the Vault path.
Instructions
Read a secret from Vault at the specified path
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path to read the secret from (e.g., 'secret/data/myapp') |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path to read the secret from (e.g., 'secret/data/myapp')",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}