Files
ha-addon/amazon-s3-backup/config.json
2024-04-03 10:21:44 +02:00

34 lines
968 B
JSON
Executable File

{
"name": "bitlab S3 Backup",
"version": "1.0.5",
"slug": "bitlab-s3-backup",
"description": "Sync Backups to bitlab S3 storage",
"url": "https://git.bitlab.ch/bitlab/ha-addon",
"arch": ["aarch64", "amd64", "armhf", "armv7", "i386"],
"boot": "manual",
"init": false,
"startup": "once",
"advanced": true,
"hassio_api": true,
"hassio_role": "backup",
"options": {
"aws_access_key": "",
"aws_secret_access_key": "",
"custom_endpoint": "https://backup.s3.fqdn.ch",
"bucket_name": "ha-backup-XXX",
"bucket_region": "minio",
"delete_local_backups": true,
"local_backups_to_keep": 3
},
"schema": {
"aws_access_key": "str",
"aws_secret_access_key": "password",
"custom_endpoint": "str",
"bucket_name": "str",
"bucket_region": "str",
"delete_local_backups": "bool",
"local_backups_to_keep": "int"
},
"map": ["backup:rw"]
}