Files
zerobyte/examples/provisioned-resources/provisioning.example.json
Nico d74f516336 feat: file-based provisionning of volumes and repos (#656)
* feat: file-based provisionning of volumes and repos

docs: provisioning example

chore: ui improvements

* chore: ci issues
2026-03-12 18:31:42 +01:00

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
}
}
]
}