-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
52 lines (45 loc) · 1.75 KB
/
config.yaml
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
51
52
# Configuration of workflows
log_level: debug
#log_level: info
# Remote buckets to sync to/from
remotes:
- name: minio1
endpoint: minio.golder.lan
accessKey: youraccesskey
secretKey: yoursecretkey
# Outbound means files that arrive locally that are to be sent to S3, with or without
# pre-processing being applied.
outbound:
- name: KSK1
description: Kasikorn Main Company Account
sensitive: false
source: "/home/rossg/Downloads/bank-statements-company/kasikorn-rossgolderltd/*"
destination: "s3://minio.golder.lan/bank-statements-company/kasikorn-rossgolderltd"
process_with: "/home/rossg/obfuscate"
- name: KSK2
description: Kasikorn Credit Card Account
source: "/home/rossg/Downloads/bank-statements-company/kasikorn-rasamee/*"
destination: "s3://minio.golder.lan/bank-statements-company/kasikorn-rasamee"
sensitive: false
- name: KSK3
description: Kasikorn Main Family Account
source: "/home/rossg/Downloads/bank-statements-family/kasikorn-rossigee/*"
destination: "s3://minio.golder.lan/bank-statements-family/kasikorn-rossigee"
sensitive: false
# Inbound means files that should be retrieved from S3 to the local machine when we
# receive an SQS notification that a new file has been deposited.
inbound:
- name: FAMILY
description: Family Document Scans
source: "amqp://bucketsyncd:somepassword@amqp.golder.lan/document-scans"
exchange: "family-scans"
queue: "scans-to-desktop"
remote: minio1
destination: "/home/rossg/Downloads"
- name: COMPANY
description: Company Document Scans
source: "amqp://bucketsyncd:somepassword@amqp.golder.lan/document-scans"
exchange: "company-scans"
queue: "scans-to-desktop"
remote: minio1
destination: "/home/rossg/Downloads"