Fix vault function docs example (#10851)

The given example is missing a `,`.
This commit is contained in:
Brian Choy 2021-04-01 06:18:06 -07:00 committed by GitHub
parent 830140157d
commit fb04fa7a25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ can access it using the following:
```hcl
locals {
foo = vault("/secret/data/hello" "foo")
foo = vault("/secret/data/hello", "foo")
}
```