-
Notifications
You must be signed in to change notification settings - Fork 2
/
webtask.json
38 lines (38 loc) · 907 Bytes
/
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
{
"title": "Auth0 Logs to S3",
"name": "auth0-logs-to-s3",
"version": "1.0.6",
"author": "westy92",
"description": "This extension will take all of your Auth0 logs and export them to an AWS S3 Bucket",
"type": "cron",
"keywords": [
"auth0",
"extension"
],
"schedule": "0 */5 * * * *",
"auth0": {
"scopes": "read:logs"
},
"secrets": {
"BATCH_SIZE": {
"description": "The amount of logs to be read on each execution. Maximum is 100.",
"default": 100
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS Access Key ID",
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS Secret Access Key",
"required": true
},
"AWS_BUCKET_NAME": {
"description": "AWS S3 Bucket Name",
"required": true
},
"AWS_REGION": {
"description": "AWS Region",
"default": "us-west-2"
}
}
}