Add root rotation statement support to mongoDB (#11404)

* Add root rotation statement support to mongoDB

* Add changelog
This commit is contained in:
Chelsea Shaw 2021-04-19 15:40:44 -05:00 committed by GitHub
parent 034442b9ee
commit 449a45baaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

3
changelog/11404.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:bug
ui: Add root rotation statements support to appropriate database secret engine plugins
```

View File

@ -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' },
],
},
];