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
This commit is contained in:
Thor 2021-07-09 16:30:21 -05:00 committed by GitHub
parent 3af99ecf5d
commit f796bc9f4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.