open-vault/website/content/docs/configuration/storage/index.mdx
Bryce Kalow b76a56d40c
feat(website): migrates nav data format and updates docs pages (#11242)
* migrates nav data format and updates docs pages

* removes sidebar_title from content files
2021-04-06 13:49:04 -04:00

43 lines
1.2 KiB
Plaintext

---
layout: docs
page_title: Storage Backends - Configuration
description: |-
The storage stanza configures the storage backend, which represents the
location for the durable storage of Vault's information. Each backend has
pros, cons, advantages, and trade-offs. For example, some backends support
high availability while others provide a more robust backup and restoration
process.
---
# `storage` Stanza
The `storage` stanza configures the storage backend, which represents the
location for the durable storage of Vault's information. Each backend has pros,
cons, advantages, and trade-offs. For example, some backends support high
availability while others provide a more robust backup and restoration process.
For information about a specific backend, choose one from the navigation on the
left.
## Configuration
Storage backend configuration is done through the Vault configuration file using
the `storage` stanza:
```hcl
storage [NAME] {
[PARAMETERS...]
}
```
For example:
```hcl
storage "file" {
path = "/mnt/vault/data"
}
```
For configuration options which also read an environment variable, the
environment variable will take precedence over values in the configuration
file.