cold-coat-35200
04/23/2020, 12:35 PMmax_versions
option for a kv secret engine?
the following does not work:
new vault.Mount(name,{
type: 'kv-v2',
path: "something",
options: {
max_versions: 100
}
})
that's the only way I found, can't see any related resource or option for the config endpoint: https://www.vaultproject.io/api-docs/secret/kv/kv-v2#configure-the-kv-enginenew vault.generic.Endpoint(
name,
{
path: `something/config`,
disableDelete: true,
dataJson: `
{
"cas_required": false,
"max_versions": 100
}
`
}
)