From 1f0d9b10b681bed514f55fb35624efd679fb8fb1 Mon Sep 17 00:00:00 2001 From: Adam Shannon Date: Thu, 30 Mar 2017 16:09:47 -0500 Subject: [PATCH] Quote dynamodb's ha_enabled property (#2547) With `ha_enabled = true` vault crashes with the following error: ``` error parsing 'storage': storage.dynamodb: At 17:16: root.ha_enabled: unknown type for string *ast.LiteralType ``` This seems related to https://github.com/hashicorp/vault/issues/1559 --- website/source/docs/configuration/storage/dynamodb.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/configuration/storage/dynamodb.html.md b/website/source/docs/configuration/storage/dynamodb.html.md index 75f68ac06b60..e390ae8f5113 100644 --- a/website/source/docs/configuration/storage/dynamodb.html.md +++ b/website/source/docs/configuration/storage/dynamodb.html.md @@ -24,7 +24,7 @@ The DynamoDB storage backend is used to persist Vault's data in ```hcl storage "dynamodb" { - ha_enabled = true + ha_enabled = "true" region = "us-west-2" table = "vault-data" } @@ -115,7 +115,7 @@ This example show enabling high availability for the DynamoDB storage backend. ```hcl storage "dynamodb" { - ha_enabled = true + ha_enabled = "true" redirect_addr = "vault-leader.my-company.internal" } ```