From 8a5a456fdb62962fb92c683f7bdbcfd481a1617f Mon Sep 17 00:00:00 2001 From: Jaskanwal Pawar <32091345+jspawar@users.noreply.github.com> Date: Wed, 2 Dec 2020 15:09:00 -0800 Subject: [PATCH] Fix typo about environment variable in docs (#10259) The CLI appears to read from `VAULT_CACERT` instead of `VAULT_CA_CERT` as the docs currently say. Basing this off code [here](https://github.com/hashicorp/vault/blob/a8566c4f8999b96e540f9001d5d8ab9433e82a92/api/client.go#L30) and personal observation --- website/pages/docs/configuration/seal/transit.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/docs/configuration/seal/transit.mdx b/website/pages/docs/configuration/seal/transit.mdx index 753a7c4e9..18e842855 100644 --- a/website/pages/docs/configuration/seal/transit.mdx +++ b/website/pages/docs/configuration/seal/transit.mdx @@ -69,7 +69,7 @@ These parameters apply to the `seal` stanza in the Vault configuration file: - `tls_ca_cert` `(string: "")`: Specifies the path to the CA certificate file used for communication with the Vault server. This may also be specified using the - `VAULT_CA_CERT` environment variable. + `VAULT_CACERT` environment variable. - `tls_client_cert` `(string: "")`: Specifies the path to the client certificate for communication with the Vault server. This may also be specified using the