mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-18 18:38:08 -05:00
Enable seal wrapping for approle secret storage (#28703)
* Enable seal wrapping for approle secret storage * changelog
This commit is contained in:
parent
0d3a82adf4
commit
3754c67abf
2 changed files with 7 additions and 0 deletions
|
|
@ -110,6 +110,10 @@ func Backend(conf *logical.BackendConfig) (*backend, error) {
|
|||
secretIDLocalPrefix,
|
||||
secretIDAccessorLocalPrefix,
|
||||
},
|
||||
SealWrapStorage: []string{
|
||||
secretIDPrefix,
|
||||
secretIDLocalPrefix,
|
||||
},
|
||||
},
|
||||
Paths: framework.PathAppend(
|
||||
rolePaths(b),
|
||||
|
|
|
|||
3
changelog/28703.txt
Normal file
3
changelog/28703.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:improvement
|
||||
auth/approle: seal wrap approle secrets if seal wrap is enabled.
|
||||
```
|
||||
Loading…
Reference in a new issue