-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.json
26 lines (26 loc) · 910 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
{
"name": "Zendesk ack-back",
"description": "Update Zendesk tickets to reflect when a PagerDuty incident has been triggered, acknowledged, resolved, etc...",
"repository": "https://github.com/ryanhoskin/pdzendesk",
"keywords": [
"pagerduty",
"zendesk"
],
"env": {
"ZENDESK_USERNAME": {
"description": "The username of the Zendesk user that will update the Zendesk ticket."
},
"ZENDESK_API_TOKEN": {
"description": "The API token for your Zendesk account."
},
"ZENDESK_SUBDOMAIN": {
"description": "The name of your Zendesk subdomain, as it appears in the URL."
},
"PAGERDUTY_API_TOKEN": {
"description": "Your 20-character alphanumeric PagerDuty API Access token."
},
"PAGERDUTY_USER_EMAIL": {
"description": "The email address of the user as whom to post notes on the origin PagerDuty incident when necessary"
}
}
}