Skip to content

Commit

Permalink
Quote dynamodb's ha_enabled property (#2547)
Browse files Browse the repository at this point in the history
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 #1559
  • Loading branch information
adamdecaf authored and jefferai committed Mar 30, 2017
1 parent db86d87 commit 1f0d9b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/source/docs/configuration/storage/dynamodb.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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"
}
```
Expand Down

0 comments on commit 1f0d9b1

Please sign in to comment.