Update Oracle DB secrets docs to reflect support for static roles (#8168)

* Fix typos

* Update Oracle DB secrets docs to show support for Static Roles

* Add warning about username case sensitivity

* Remove warning about casing

* Fix typo

Co-Authored-By: Becca Petrin <beccapetrin@gmail.com>

Co-authored-by: Becca Petrin <beccapetrin@gmail.com>
This commit is contained in:
Michael Golowka
2020-02-13 15:11:33 -07:00
committed by GitHub
parent 9f980ade31
commit 33a7011e99
2 changed files with 5 additions and 4 deletions

View File

@@ -297,8 +297,8 @@ func (m *MySQL) SetCredentials(ctx context.Context, statements dbplugin.Statemen
} }
// executePreparedStatmentsWithMap loops through the given templated SQL statements and // executePreparedStatmentsWithMap loops through the given templated SQL statements and
// applies the a map to them, interpolating values into the templates,returning // applies the map to them, interpolating values into the templates, returning
// tthe resulting username and password // the resulting username and password
func (m *MySQL) executePreparedStatmentsWithMap(ctx context.Context, statements []string, queryMap map[string]string) error { func (m *MySQL) executePreparedStatmentsWithMap(ctx context.Context, statements []string, queryMap map[string]string) error {
// Grab the lock // Grab the lock
m.Lock() m.Lock()

View File

@@ -12,9 +12,10 @@ description: |-
Oracle is one of the supported plugins for the database secrets engine. This Oracle is one of the supported plugins for the database secrets engine. This
plugin generates database credentials dynamically based on configured roles for plugin generates database credentials dynamically based on configured roles for
the Oracle database. the Oracle database and also supports [Static
Roles](/docs/secrets/databases/index.html#static-roles).
The Oracle database plugin is not bundled in the core Vault code tree and can be ~> The Oracle database plugin is not bundled in the core Vault code tree and can be
found at its own git repository here: found at its own git repository here:
[hashicorp/vault-plugin-database-oracle](https://github.com/hashicorp/vault-plugin-database-oracle) [hashicorp/vault-plugin-database-oracle](https://github.com/hashicorp/vault-plugin-database-oracle)