forked from sandorzelei/oie-auth0-user-update-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webtask.json
51 lines (51 loc) · 1.61 KB
/
webtask.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
47
48
49
50
51
{
"title": "OIE-Auth0 user update webhook",
"name": "oie-auth0-user-webhook-1-8",
"version": "1.8.0",
"author": "OIEngine",
"description": "Web hook for updating user profile on OIE side",
"type": "cron",
"logoUrl": "https://cdn.auth0.com/extensions/auth0-webhooks/assets/logo.svg",
"repository": "https://github.com/oiengine/oie-auth0-user-update-webhook",
"keywords": [
"auth0",
"extension"
],
"schedule": "0 */1 * * * *",
"secrets": {
"BATCH_SIZE": {
"description": "The ammount of logs to be read on each execution. Maximun is 100.",
"default": 100
},
"AUTH0_API_ENDPOINTS": {
"description": "Allows you to filter specific API endpoints, comma separated.",
"example": "e.g.: users, connections, rules, logs, emails, stats, clients, tenants",
"default": "users"
},
"SIGN_UP_USER_WEBHOOK_URL": {
"required": false
},
"UPDATE_USER_WEBHOOK_URL": {
"required": false
},
"DELETE_USER_WEBHOOK_URL": {
"required": false
},
"WEBHOOK_CONCURRENT_CALLS": {
"description": "The maximum concurrent calls that will be made to your webhook",
"default": 1
},
"AUTH0_APP_CLIENT_SECRET": {
"description": "Secret id of application, it is used to create a JWT token",
"required": true
},
"AUTH0_APP_CLIENT_ID": {
"description": "Client id of application, it is used in filtering the logs, only logs from this application will be processed",
"required": true
},
"AUTH0_TOKEN": {
"description": "Security token with read:logs, read:users",
"required": true
}
}
}