-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathapp.json
46 lines (46 loc) · 1.08 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "heroku-cloudwatch-drain",
"description": "A Heroku HTTPS log drain that stores logs in CloudWatch Logs.",
"keywords": [
"logging",
"logs",
"aws",
"cloudwatch",
"logplex"
],
"website": "https://github.com/kiskolabs/heroku-cloudwatch-drain",
"repository": "https://github.com/kiskolabs/heroku-cloudwatch-drain",
"success_url": "/",
"env": {
"USER": {
"description": "The basic auth username.",
"value": "heroku-cloudwatch-drain",
"required": true
},
"PASS": {
"description": "The basic auth password.",
"generator": "secret",
"required": true
},
"AWS_ACCESS_KEY_ID": {
"description": "The AWS access key ID.",
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"description": "The AWS secret access key.",
"required": true
},
"AWS_REGION": {
"description": "The AWS region.",
"value": "us-east-1",
"required": true
},
"GO_SETUP_GOPATH_IN_IMAGE": "true"
},
"image": "heroku/go",
"buildpacks": [
{
"url": "heroku/go"
}
]
}