mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-18 05:47:31 -04:00
* feat: file-based provisionning of volumes and repos docs: provisioning example chore: ui improvements * chore: ci issues
37 lines
834 B
JSON
37 lines
834 B
JSON
{
|
|
"version": 1,
|
|
"repositories": [
|
|
{
|
|
"id": "aws-prod",
|
|
"organizationId": "replace-with-existing-organization-id",
|
|
"name": "AWS Production Backups",
|
|
"backend": "s3",
|
|
"compressionMode": "auto",
|
|
"config": {
|
|
"backend": "s3",
|
|
"endpoint": "https://s3.amazonaws.com",
|
|
"bucket": "company-backups",
|
|
"accessKeyId": "env://ZEROBYTE_AWS_ACCESS_KEY_ID",
|
|
"secretAccessKey": "file://aws_secret_access_key"
|
|
}
|
|
}
|
|
],
|
|
"volumes": [
|
|
{
|
|
"id": "webdav-team-a",
|
|
"organizationId": "replace-with-existing-organization-id",
|
|
"name": "Team A WebDAV",
|
|
"backend": "webdav",
|
|
"config": {
|
|
"backend": "webdav",
|
|
"server": "backup.internal.example.com",
|
|
"path": "/team-a",
|
|
"username": "team-a",
|
|
"password": "env://ZEROBYTE_WEBDAV_PASSWORD",
|
|
"port": 443,
|
|
"ssl": true
|
|
}
|
|
}
|
|
]
|
|
}
|