-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathconfig.json
More file actions
38 lines (38 loc) · 1.12 KB
/
Copy pathconfig.json
File metadata and controls
38 lines (38 loc) · 1.12 KB
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
{
"email": "hello@example.com",
"domain": "example.com",
"dummy": false,
"stage": true,
"dns": {
"provider": "route53",
"AWS_ACCESS_KEY_ID": "ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY": "SECRET_KEY"
},
"destinations": [
{
"provider": "email",
"from": "from@example.com",
"host": "email-smtp.us-east-1.amazonaws.com",
"port": "587",
"username": "SMTP_USER",
"password": "SMTP_PASSWORD",
"to": "to@example.com"
},
{
"provider": "hetzner",
"api_token": "HETZER_WRITABLE_API_TOKEN",
"load_balancer_name": "your-lb-name",
"port": 443
},
{
"provider": "sftp",
"user": "root",
"host": "1.1.1.1",
"port": "22",
"private_key": "-----BEGIN RSA PRIVATE KEY-----\n...\n-----END RSA PRIVATE KEY-----",
"password": "hunter2",
"certificate_destination": "/path/to/certificate.txt",
"private_key_destination": "/path/to/private.txt"
}
]
}