forked from esanchezm/amazon-cloudwatch-to-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.5 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
{
"name": "amazon-cloudwatch-to-slack",
"description": "Relay alerts from Amazon CloudWatch to a Slack.com room.",
"logo": "https://i.imgur.com/wxQoIRH.png",
"repository": "https://github.com/esanchezm/amazon-cloudwatch-to-slack",
"keywords": ["aws", "cloudwatch", "slack"],
"success_url": "/",
"env": {
"SLACK_COMPANY_NAME": {
"description": "Name of your Slack team",
"required": true
},
"SLACK_WEBHOOK_URL": {
"description": "Secret Slack Webhook Url",
"required": true
},
"SLACK_CHANNEL": {
"description": "Slack channel to use"
},
"SLACK_USERNAME": {
"description": "Slack user name to use",
"value": "AWS CloudWatch",
"required": false
},
"SLACK_ICON_URL": {
"description": "Slack icon to use",
"value": "https://i.imgur.com/wxQoIRH.png",
"required": false
},
"SLACK_SES_CHANNEL": {
"description": "Slack channel to use for SES notifications",
"required": false
},
"SLACK_SES_USERNAME": {
"description": "Slack user name to use for SES notifications",
"value": "AWS SES",
"required": false
},
"SLACK_SES_ICON_URL": {
"description": "Slack icon to use for SES notifications",
"value": "https://i.imgur.com/WnBZVVb.png",
"required": false
}
}
}