-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsinks.json
50 lines (50 loc) · 1.15 KB
/
sinks.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"version": "1.0.0",
"sinks": [
{
"type": "S3",
"name": "s3_minio",
"description": "minio storage cluster",
"credentials": {
"access-key": "minioadmin",
"secret-key": "s3cr3t"
},
"access": {
"bucket": "lxr",
"prefix": "lxr",
"host": "localhost",
"port": "9000",
"protocol": "https"
}
},
{
"type": "S3",
"name": "s3_aws",
"description": "AWS S3 storage",
"credentials": {
"access-key": "AKIA4VLHJ8YV6EXAMPEL",
"secret-key": "s3cr3t"
},
"access": {
"bucket": "mybucket",
"prefix": "lxr",
"host": "mybucket.s3.eu-west-3.amazonaws.com",
"port": "443",
"protocol": "https"
}
},
{
"type": "FS",
"name": "fs_copy",
"description": "filesystem copy",
"credentials": {
"user": "*",
"group": "root",
"permissions": "640"
},
"access": {
"basepath": "/data/secure_stick"
}
}
]
}