[docs/website/dynamic-secrets] - fix typo in multi-line cli command for configuring postgres as a secrets engine (#7842)

* docs/website/secret-mgmt: fix minor typo in cli command for configuring postgres secrets engine

Signed-off-by: Colton McCurdy <mccurdyc22@gmail.com>

* docs/website/secret-mgmt: fix minor typo in cli command for configuring postgres secrets engine

Signed-off-by: Colton McCurdy <mccurdyc22@gmail.com>
This commit is contained in:
Colton J. McCurdy 2019-11-13 02:43:00 -05:00 committed by Michel Vocks
parent d00cb48023
commit 80bc8d060a
2 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ working with `database` secrets engine is out of scope for this guide.
$ vault secrets enable database
# Configure the secret engine with appropriate parameter values
$ vault write database/config/postgresql
$ vault write database/config/postgresql \
plugin_name=postgresql-database-plugin \
allowed_roles=* \
connection_url=postgresql://root:rootpassword@localhost:5432/myapp

View File

@ -204,7 +204,7 @@ command with correct URL to match your environment.
**Example:**
```plaintext
$ vault write database/config/postgresql
$ vault write database/config/postgresql \
plugin_name=postgresql-database-plugin \
allowed_roles=readonly \
connection_url=postgresql://root:rootpassword@localhost:5432/myapp