From 80bc8d060a8226bdfd963984273452145edd7270 Mon Sep 17 00:00:00 2001 From: "Colton J. McCurdy" Date: Wed, 13 Nov 2019 02:43:00 -0500 Subject: [PATCH] [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 * docs/website/secret-mgmt: fix minor typo in cli command for configuring postgres secrets engine Signed-off-by: Colton McCurdy --- website/source/guides/secret-mgmt/app-integration.html.md | 2 +- website/source/guides/secret-mgmt/dynamic-secrets.html.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/guides/secret-mgmt/app-integration.html.md b/website/source/guides/secret-mgmt/app-integration.html.md index b234d14c7b..0e55a9bd21 100644 --- a/website/source/guides/secret-mgmt/app-integration.html.md +++ b/website/source/guides/secret-mgmt/app-integration.html.md @@ -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 diff --git a/website/source/guides/secret-mgmt/dynamic-secrets.html.md b/website/source/guides/secret-mgmt/dynamic-secrets.html.md index 0f398ee751..18586ec565 100644 --- a/website/source/guides/secret-mgmt/dynamic-secrets.html.md +++ b/website/source/guides/secret-mgmt/dynamic-secrets.html.md @@ -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