autorestic/docs/pages/backend/index.md

41 lines
1.1 KiB
Markdown
Raw Normal View History

2020-05-17 13:30:23 +00:00
# 💽 Backends
2021-04-21 07:34:01 +00:00
Backends are the outputs of the backup process. Each location needs at least one.
2022-04-07 09:00:28 +00:00
Note: names of backends MUST be lower case!
2020-05-17 13:30:23 +00:00
```yaml | .autorestic.yml
2021-11-21 20:06:25 +00:00
version: 2
2020-05-17 13:30:23 +00:00
backends:
name-of-backend:
type: local
path: /data/my/backups
```
## Types
We restic supports multiple types of backends. See the [full list](/backend/available) for details.
## Avoid Generating Keys
By default, `autorestic` will generate a key for every backend if none is defined. This is done by updating your config file with the key.
In cases where you want to provide the key yourself, you can ensure that `autorestic` doesn't accidentally generate one for you by setting `requireKey: true`.
Example:
```yaml | .autorestic.yml
version: 2
backends:
foo:
type: local
path: /data/my/backups
# Alternatively, you can set the key through the `AUTORESTIC_FOO_RESTIC_PASSWORD` environment variable.
key: ... your key here ...
requireKey: true
```
With this setting, if a key is missing, `autorestic` will crash instead of generating a new key and updating your config file.