-
Notifications
You must be signed in to change notification settings - Fork 0
/
secrets.yml.sample
51 lines (40 loc) · 1.3 KB
/
secrets.yml.sample
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
common: &common
# MySQL connection information
# ---------------------------------------------------------------------------
# You can list mulitple databases to backup using the following format:
#
# unique_name:
# host: localhost
# database: your_database_name
# username: your_username
# password: your_password
# port: 3306 (will default to 3306)
# unique_name_2:
# host: localhost
# database: another_database_name
# username: another_username
# password: another_password
# port: 3306 (will default to 3306)
mysql:
database1:
host: localhost
database: database_name
username: root
password:
# Amazon AWS S3 connection information
# ---------------------------------------------------------------------------
# You can get your S3 information when you create a user using AWS IAM console.
s3:
bucket: your-bucket-name
access_key_id: your-IAM-key-id
secret_access_key: your-IAM-access-key
# -----------------------------------------------------------------------------
# You can define different keys for different app environments.
development:
<<: *common
test:
<<: *common
staging:
<<: *common
production:
<<: *common