-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
31 lines (31 loc) · 1005 Bytes
/
app.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
{
"name": "sslreminder",
"description": "Check expiration date of SSL certificates periodically, then remind you via email.",
"repository": "https://github.com/tkawachi/sslreminder",
"keywords": ["SSL", "certificate"],
"env": {
"BUILDPACK_URL": {
"description": "Ensure we use an updated go buildpack. Usually you don't need to modify this url.",
"value": "https://github.com/kr/heroku-buildpack-go.git"
},
"HOSTS": {
"description": "Comma separated hosts to be checked. Example: 1.example.com,2.example.com",
"required": true
},
"EMAILS": {
"description": "Comma separated email addresses. Example: [email protected],[email protected]",
"required": true
},
"THRESHOLD_DAYS": {
"description": "Threshold remaining days to remind.",
"value": "30"
},
"FROM": {
"description": "From address. (default the first address in EMAILS)",
"required": false
}
},
"addons": [
"sendgrid:starter"
]
}