-
Notifications
You must be signed in to change notification settings - Fork 6
/
webtask.json
73 lines (73 loc) · 1.98 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
{
"title": "Auth0 Singpass Proxy Extension",
"name": "auth0-singpass-extension",
"version": "1.2.0",
"author": "Auth0",
"useHashName": false,
"description": "singpass proxy endpoint to support private key jwt / client assertion",
"type": "application",
"category": "end_user",
"logoUrl": "https://app.singpass.gov.sg/static/og_image.png",
"initialUrlPath": "/",
"keywords": [
"auth0",
"extension",
"singpass"
],
"secrets": {
"AUTH0_CUSTOM_DOMAIN": {
"description": "YOUR_CUSTOM_DOMAIN",
"example": "auth.oauth101.net",
"required": true
},
"AUTH0_CLIENT_ID": {
"description": "Auth0 Client ID",
"required": true
},
"AUTH0_CLIENT_SECRET": {
"description": "Client Secret",
"required": true
},
"SINGPASS_ENVIRONMENT": {
"description": "Singpass Environment Staging",
"type": "select",
"allowMultiple": false,
"default": "https://stg-id.singpass.gov.sg",
"options": [
{
"value": "https://stg-id.singpass.gov.sg",
"text": "Staging"
}
]
},
"SINGPASS_CLIENT_ID": {
"description": "Singpass Registered client_id",
"required": true
},
"SINGPASS_SIGNING_ALG": {
"description": "Signing Algorithm",
"type": "select",
"allowMultiple": false,
"default": "ES256",
"options": [
{
"value": "ES256",
"text": "ES256"
}
]
},
"RELYING_PARTY_JWKS_ENDPOINT": {
"description": "Relying Party JSON Web Key",
"example": "https://rp.com/.well-known/jwks.json",
"required": true
},
"RELYING_PARTY_PRIVATE_KEY": {
"description": "Relying Party Private Key",
"required": true
},
"RELYING_PARTY_KID": {
"description": "Relying Party KID",
"required": true
}
}
}