Enable seal wrapping for approle secret storage (#28703)

* Enable seal wrapping for approle secret storage

* changelog
This commit is contained in:
Scott Miller 2024-12-20 13:03:34 -06:00 committed by GitHub
parent 0d3a82adf4
commit 3754c67abf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View file

@ -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
View file

@ -0,0 +1,3 @@
```release-note:improvement
auth/approle: seal wrap approle secrets if seal wrap is enabled.
```