vault_write
Store secrets securely in HashiCorp Vault by writing data to specified paths using JSON format for sensitive information management.
Instructions
Write a secret to Vault at the specified path
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path to write the secret to (e.g., 'secret/data/myapp') | |
| data | Yes | The secret data to write as a JSON object |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "The secret data to write as a JSON object",
"type": "object"
},
"path": {
"description": "The path to write the secret to (e.g., 'secret/data/myapp')",
"type": "string"
}
},
"required": [
"path",
"data"
],
"type": "object"
}