-
Notifications
You must be signed in to change notification settings - Fork 1
/
webtask.json
234 lines (234 loc) · 5.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
{
"title": "Auth0 Logs to CloudWatch",
"name": "auth0-logs-to-cloudwatch",
"version": "1.1.0",
"author": "auth0",
"description": "This extension will take all of your Auth0 logs and export them to CloudWatch",
"type": "cron",
"logoUrl": "https://truesightpulse.bmc.com/wp-content/uploads/2016/11/cloudwatch.png",
"repository": "https://github.com/pushpabrol/auth0-logs-cloudwatch",
"keywords": [
"auth0",
"extension"
],
"schedule": "0 */5 * * * *",
"auth0": {
"scopes": "read:logs"
},
"secrets": {
"CLOUDWATCH_LOG_GROUP_NAME": {
"description": "Cloudwatch Log Group Name",
"required": true
},
"CLOUDWATCH_LOG_STREAM_NAME": {
"description": "Cloudwatch Log Group Stream Name",
"required": true
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS Access Key Id Host",
"required": true
},
"AWS_SECRET_KEY": {
"description": "AWS Secret Key",
"required": true
},
"AWS_REGION": {
"description": "AWS Region",
"required": true
},
"BATCH_SIZE": {
"description": "The ammount of logs to be read on each execution. Maximun is 100.",
"default": 100
},
"LOG_LEVEL": {
"description": "This allows you to specify the log level of events that need to be sent",
"type": "select",
"allowMultiple": true,
"options": [
{
"value": "-",
"text": ""
},
{
"value": "0",
"text": "Debug"
},
{
"value": "1",
"text": "Info"
},
{
"value": "2",
"text": "Warning"
},
{
"value": "3",
"text": "Error"
},
{
"value": "4",
"text": "Critical"
}
]
},
"LOG_TYPES": {
"description": "If you only want to send events with a specific type (eg: failed logins)",
"type": "select",
"allowMultiple": true,
"options": [
{
"value": "-",
"text": ""
},
{
"value": "s",
"text": "Success Login (Info)"
},
{
"value": "seacft",
"text": "Success Exchange (Info)"
},
{
"value": "feacft",
"text": "Failed Exchange (Error)"
},
{
"value": "f",
"text": "Failed Login (Error)"
},
{
"value": "w",
"text": "Warnings During Login (Warning)"
},
{
"value": "du",
"text": "Deleted User (Info)"
},
{
"value": "fu",
"text": "Failed Login (invalid email/username) (Error)"
},
{
"value": "fp",
"text": "Failed Login (wrong password) (Error)"
},
{
"value": "fc",
"text": "Failed by Connector (Error)"
},
{
"value": "fco",
"text": "Failed by CORS (Error)"
},
{
"value": "con",
"text": "Connector Online (Info)"
},
{
"value": "coff",
"text": "Connector Offline (Error)"
},
{
"value": "fcpro",
"text": "Failed Connector Provisioning (Critical)"
},
{
"value": "ss",
"text": "Success Signup (Info)"
},
{
"value": "fs",
"text": "Failed Signup (Error)"
},
{
"value": "cs",
"text": "Code Sent (Debug)"
},
{
"value": "cls",
"text": "Code/Link Sent (Debug)"
},
{
"value": "sv",
"text": "Success Verification Email (Debug)"
},
{
"value": "fv",
"text": "Failed Verification Email (Debug)"
},
{
"value": "scp",
"text": "Success Change Password (Info)"
},
{
"value": "fcp",
"text": "Failed Change Password (Error)"
},
{
"value": "sce",
"text": "Success Change Email (Info)"
},
{
"value": "fce",
"text": "Failed Change Email (Error)"
},
{
"value": "scu",
"text": "Success Change Username (Info)"
},
{
"value": "fcu",
"text": "Failed Change Username (Error)"
},
{
"value": "scpn",
"text": "Success Change Phone Number (Info)"
},
{
"value": "fcpn",
"text": "Failed Change Phone Number (Error)"
},
{
"value": "svr",
"text": "Success Verification Email Request (Debug)"
},
{
"value": "fvr",
"text": "Failed Verification Email Request (Error)"
},
{
"value": "scpr",
"text": "Success Change Password Request (Debug)"
},
{
"value": "fcpr",
"text": "Failed Change Password Request (Error)"
},
{
"value": "fn",
"text": "Failed Sending Notification (Error)"
},
{
"value": "limit_wc",
"text": "Blocked Account (Critical)"
},
{
"value": "limit_ui",
"text": "Too Many Calls to /userinfo (Critical)"
},
{
"value": "api_limit",
"text": "Rate Limit On API (Critical)"
},
{
"value": "sdu",
"text": "Successful User Deletion (Info)"
},
{
"value": "fdu",
"text": "Failed User Deletion (Error)"
}
]
}
}
}