-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.json
34 lines (34 loc) · 1018 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "Sync Backups on Amazon S3",
"version": "1.0.3",
"slug": "sync-backups-on-s3",
"description": "Sync backups to your Amazon S3 bucket",
"url": "https://github.com/dral3x/ha-addons/tree/main/sync-backups-s3",
"arch": ["aarch64", "amd64"],
"image": "ghcr.io/dral3x/sync-backups-on-s3-{arch}",
"init": false,
"boot": "manual",
"backup": "cold",
"hassio_role": "backup",
"options": {
"aws_key_id": null,
"aws_key_secret": null,
"bucket_name": null,
"bucket_folder": "/",
"delete_if_missing": false,
"storage_class": "STANDARD_IA",
"endpoint_url": "",
"debug_mode": false
},
"schema": {
"aws_key_id": "password",
"aws_key_secret": "password",
"bucket_name": "str",
"bucket_folder": "str",
"delete_if_missing": "bool",
"storage_class": "list(STANDARD|REDUCED_REDUNDANCY|STANDARD_IA|ONEZONE_IA|INTELLIGENT_TIERING|GLACIER|DEEP_ARCHIVE|GLACIER_IR)",
"endpoint_url": "str?",
"debug_mode": "bool"
},
"map": ["backup:rw"]
}