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
4.9 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
docs | DynamoDB - Storage Backends - Configuration | docs-configuration-storage-dynamodb | The DynamoDB storage backend is used to persist Vault's data in DynamoDB table. |
DynamoDB Storage Backend
The DynamoDB storage backend is used to persist Vault's data in DynamoDB table.
-
High Availability – the DynamoDB storage backend supports high availability. Because DynamoDB uses the time on the Vault node to implement the session lifetimes on its locks, significant clock skew across Vault nodes could cause contention issues on the lock.
-
Community Supported – the DynamoDB storage backend is supported by the community. While it has undergone review by HashiCorp employees, they may not be as knowledgeable about the technology. If you encounter problems with them, you may be referred to the original author.
storage "dynamodb" {
ha_enabled = "true"
region = "us-west-2"
table = "vault-data"
}
For more information about the read/write capacity of DynamoDB tables, please see the official AWS DynamoDB documentation.
dynamodb
Parameters
-
endpoint
(string: "")
– Specifies an alternative, AWS compatible, DynamoDB endpoint. This can also be provided via the environment variableAWS_DYNAMODB_ENDPOINT
. -
ha_enabled
(bool: false)
– Specifies whether this backend should be used to run Vault in high availability mode. This can also be provided via the environment variableDYNAMODB_HA_ENABLED
. -
max_parallel
(string: "128")
– Specifies the maximum number of concurrent requests. -
region
(string "us-east-1")
– Specifies the AWS region. This can also be provided via the environment variableAWS_DEFAULT_REGION
. -
read_capacity
(int: 5)
– Specifies the maximum number of reads consumed per second on the table. This can also be provided via the environment variableAWS_DYNAMODB_READ_CAPACITY
. -
table
(string: "vault-dynamodb-backend")
– Specifies the name of the DynamoDB table in which to store Vault data. If the specified table does not yet exist, it will be created during initialization. This can also be provided via the environment variableAWS_DYNAMODB_TABLE
. -
write_capacity
(int: 5)
– Specifies the maximum number of writes performed per second on the table. This can also be provided via the environment variableAWS_DYNAMODB_WRITE_CAPACITY
.
The following settings are used for authenticating to AWS. If you are
running your Vault server on an EC2 instance, you can also make use of the EC2
instance profile service to provide the credentials Vault will use to make
DynamoDB API calls. Leaving the access_key
and secret_key
fields empty will
cause Vault to attempt to retrieve credentials from the AWS metadata service.
-
access_key
(string: <required>)
– Specifies the AWS access key. This can also be provided via the environment variableAWS_ACCESS_KEY_ID
. -
secret_key
(string: <required>)
– Specifies the AWS secret key. This can also be provided via the environment variableAWS_SECRET_ACCESS_KEY
. -
session_token
(string: "")
– Specifies the AWS session token. This can also be provided via the environment variableAWS_SESSION_TOKEN
.
This backend also supports the following high availability parameters. These are discussed in more detail in the HA concepts page.
-
cluster_addr
(string: "")
– Specifies the address to advertise to other Vault servers in the cluster for request forwarding. This can also be provided via the environment variableVAULT_CLUSTER_ADDR
. This is a full URL, likeredirect_addr
, but Vault will ignore the scheme (all cluster members always use TLS with a private key/certificate). -
disable_clustering
(bool: false)
– Specifies whether clustering features such as request forwarding are enabled. Setting this to true on one Vault node will disable these features only when that node is the active node. -
redirect_addr
(string: <required>)
– Specifies the address (full URL) to advertise to other Vault servers in the cluster for client redirection. This can also be provided via the environment variableVAULT_REDIRECT_ADDR
.
dynamodb
Examples
Custom Table and Read-Write Capacity
This example shows using a custom table name and read/write capacity.
storage "dynamodb" {
table = "my-vault-data"
read_capacity = 10
write_capacity = 15
}
Enabling High Availability
This example show enabling high availability for the DynamoDB storage backend.
storage "dynamodb" {
ha_enabled = "true"
redirect_addr = "vault-leader.my-company.internal"
}