From 6414fadae853315d596d98f31e23fbee6762b4a9 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 15 Dec 2021 15:33:15 -0500 Subject: [PATCH 1/2] docs: add a note regarding the backend => storage config key aliasing This was missing from upgrade docs and implemented in #2456. --- website/content/docs/upgrading/upgrade-to-0.7.0.mdx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/website/content/docs/upgrading/upgrade-to-0.7.0.mdx b/website/content/docs/upgrading/upgrade-to-0.7.0.mdx index a4f3c66d60bf..025756730ce5 100644 --- a/website/content/docs/upgrading/upgrade-to-0.7.0.mdx +++ b/website/content/docs/upgrading/upgrade-to-0.7.0.mdx @@ -11,6 +11,13 @@ description: |- This page contains the list of deprecations and important or breaking changes for Vault 0.7.0 compared to the most recent release. Please read it carefully. +## Rename of `backend` config key to `storage` + +When configuring Vault, the `backend` key that previously was used to configure +storage has now been renamed to `storage`. Vault will alias the old key to the +new path, though users are encouraged to update their configuration to ensure +minimal disruption in the future when the alias is removed. + ## List Operations Always Use Trailing Slash Any list operation, whether via the `GET` or `LIST` HTTP verb, will now From b08553ca1c867ae969d587d0c1cd494bcf6821d5 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 15 Dec 2021 16:57:52 -0500 Subject: [PATCH 2/2] Update website/content/docs/upgrading/upgrade-to-0.7.0.mdx Co-authored-by: Loann Le <84412881+taoism4504@users.noreply.github.com> --- website/content/docs/upgrading/upgrade-to-0.7.0.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/upgrading/upgrade-to-0.7.0.mdx b/website/content/docs/upgrading/upgrade-to-0.7.0.mdx index 025756730ce5..3d13ac492f1d 100644 --- a/website/content/docs/upgrading/upgrade-to-0.7.0.mdx +++ b/website/content/docs/upgrading/upgrade-to-0.7.0.mdx @@ -13,7 +13,7 @@ for Vault 0.7.0 compared to the most recent release. Please read it carefully. ## Rename of `backend` config key to `storage` -When configuring Vault, the `backend` key that previously was used to configure +When configuring Vault, the `backend` key previously used to configure storage has now been renamed to `storage`. Vault will alias the old key to the new path, though users are encouraged to update their configuration to ensure minimal disruption in the future when the alias is removed.