From 4e8edb9ac8c64ca9f886ea0a114ae669ffc5bd04 Mon Sep 17 00:00:00 2001 From: Vy Hoang Cu Date: Thu, 27 Jun 2019 14:14:14 -0700 Subject: [PATCH] Notify newcomers to the gem that the current examples use older version of a specific secrets engine --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0a5fb897..77db75c5 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,7 @@ Vault.sys.seal_status #### Create a Secret ```ruby +# Note: the following is for writing to the KV version 1 secrets engine. If using other secrets engines (including KV version 2), please see documentation https://www.vaultproject.io/api/secret/index.html Vault.logical.write("secret/bacon", delicious: true, cooktime: "11") #=> # ```