-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml.example
40 lines (36 loc) · 1.2 KB
/
config.yaml.example
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
# Account credentials by name
accounts:
'account1-prod':
name: 'account1'
access_key: 'AWS_ACCESS_KEY'
access_secret: 'AWS_ACCES_SECRET'
'account2':
name: 'account2'
access_key: 'AWS_ACCESS_KEY'
access_secret: 'AWS_ACCES_SECRET'
# AWS instances to do EBS back up on
instances:
'account1-prod': # account name where instances reside
'us-east-1': # region where instances in account reside
-
# name of the instance, as derived from tags:Name
name: 'mongodb1'
# retention time period. This is derived from the datemath module
# please see the following for more information on time periods
# https://github.com/nickmaccarthy/python-datemath
retention: '7d'
-
name: 'mongodb2'
retention: '7d'
-
name: 'mongodb3'
retention: '7d'
'account2':
'us-west-2':
-
name: 'cassandradb1'
retention: '30d'
# Publish errors to SNS?
sns_publish: true
# ARN for SNS topic
sns_arn: 'arn:aws:sns:us-east-1:xxxxx:arn-name'