mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
Add root rotation statement support to mongoDB (#11404)
* Add root rotation statement support to mongoDB * Add changelog
This commit is contained in:
parent
6b2f99cd6e
commit
c280349462
2 changed files with 5 additions and 0 deletions
3
changelog/11404.txt
Normal file
3
changelog/11404.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
ui: Add root rotation statements support to appropriate database secret engine plugins
|
||||
```
|
||||
|
|
@ -20,6 +20,7 @@ const AVAILABLE_PLUGIN_TYPES = [
|
|||
{ attr: 'username_template', group: 'pluginConfig' },
|
||||
{ attr: 'tls', group: 'pluginConfig', subgroup: 'TLS options' },
|
||||
{ attr: 'tls_ca', group: 'pluginConfig', subgroup: 'TLS options' },
|
||||
{ attr: 'root_rotation_statements', group: 'statements' },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
|
@ -37,6 +38,7 @@ const AVAILABLE_PLUGIN_TYPES = [
|
|||
{ attr: 'max_open_connections', group: 'pluginConfig' },
|
||||
{ attr: 'max_idle_connections', group: 'pluginConfig' },
|
||||
{ attr: 'max_connection_lifetime', group: 'pluginConfig' },
|
||||
{ attr: 'root_rotation_statements', group: 'statements' },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue