From f796bc9f4df692a53dd93d938e29dd4a90c1c2c5 Mon Sep 17 00:00:00 2001 From: Thor <8681572+thorfour@users.noreply.github.com> Date: Fri, 9 Jul 2021 16:30:21 -0500 Subject: [PATCH] cockroachdb: Fix either incorrect or outdated info (#11512) The documentation stated that Vault would not create the table if it doesn't exist. But Vault does attempt to create the table if it doesn't exist. Ref: https://github.com/hashicorp/vault/blob/master/physical/cockroachdb/cockroachdb.go#L84 --- website/content/docs/configuration/storage/cockroachdb.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/website/content/docs/configuration/storage/cockroachdb.mdx b/website/content/docs/configuration/storage/cockroachdb.mdx index 8eb8972036..b3689a36cc 100644 --- a/website/content/docs/configuration/storage/cockroachdb.mdx +++ b/website/content/docs/configuration/storage/cockroachdb.mdx @@ -37,8 +37,7 @@ uses that driver to interact with the database. connection string URLs, see the examples section below. - `table` `(string: "vault_kv_store")` – Specifies the name of the table in - which to write Vault data. This table must already exist (Vault will not - attempt to create it). + which to write Vault data. If this table does not exist Vault will attempt to create it. - `max_parallel` `(string: "128")` – Specifies the maximum number of concurrent requests to CockroachDB.