From fb04fa7a25173ad92f3072f13ee187542728da2c Mon Sep 17 00:00:00 2001 From: Brian Choy Date: Thu, 1 Apr 2021 06:18:06 -0700 Subject: [PATCH] Fix vault function docs example (#10851) The given example is missing a `,`. --- .../docs/templates/hcl_templates/functions/contextual/vault.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/templates/hcl_templates/functions/contextual/vault.mdx b/website/content/docs/templates/hcl_templates/functions/contextual/vault.mdx index 0b29de1eb..5d4a7a020 100644 --- a/website/content/docs/templates/hcl_templates/functions/contextual/vault.mdx +++ b/website/content/docs/templates/hcl_templates/functions/contextual/vault.mdx @@ -17,7 +17,7 @@ can access it using the following: ```hcl locals { - foo = vault("/secret/data/hello" "foo") + foo = vault("/secret/data/hello", "foo") } ```