mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 00:11:19 +00:00
* Add Vault SecretRef plugin Signed-off-by: sallyom <somalley@redhat.com> * expand Vault setup to registered SecretRef targets Signed-off-by: sallyom <somalley@redhat.com> * fix(vault): use sdk secret target seam * fix(vault): preserve auth profile target paths * docs(vault): document plugin enable step * fix(vault): make status provider-alias aware * fix(vault): reject noncanonical secret ids * fix(vault): separate resolver timeout deadlines * fix(vault): forward private CA trust settings * fix(secrets): preserve plugin policy boundaries --------- Signed-off-by: sallyom <somalley@redhat.com> Co-authored-by: joshavant <830519+joshavant@users.noreply.github.com>
27 lines
597 B
JSON
27 lines
597 B
JSON
{
|
|
"name": "@openclaw/vault",
|
|
"version": "2026.6.2",
|
|
"private": true,
|
|
"description": "HashiCorp Vault SecretRef provider integration for OpenClaw",
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*"
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"build": {
|
|
"staticAssets": [
|
|
{
|
|
"source": "./vault-secret-ref-resolver.js",
|
|
"output": "vault-secret-ref-resolver.js"
|
|
},
|
|
{
|
|
"source": "./vault-secret-id.js",
|
|
"output": "vault-secret-id.js"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|