-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
57 lines (56 loc) · 2.12 KB
/
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
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
{
"name": "Okta Managed Access Service",
"description": "Enable the delegation of authority between users with Okta OAuth authorization servers.",
"repository": "https://github.com/andymarch/okta-managedaccess",
"logo": "https://www.okta.com/sites/all/themes/Okta/images/logos/developer/Dev_Logo-02_Large.png",
"keywords": ["oauth", "oidc", "okta"],
"env": {
"TENANT": {
"description": "The URL of your Okta tenant, https://<yourname>.okta.com.",
"value": ""
},
"TOKEN": {
"description": "API token for access to your Okta tenant, must be able to read and write to users who will delegate/exercise delegation.",
"value": ""
},
"ISSUER":{
"description": "The OAuth issuer URI for the service which will send requests to this service.",
"value": ""
},
"TOKEN_AUD":{
"description": "The audience of the OAuth authorization server which will send requests to this service.",
"value": ""
},
"USER_TYPE_ID": {
"description": "The user type id for non-delegatable users.",
"value": ""
},
"DELEGATED_USER_TYPE_ID": {
"description": "The user type id for delegatable users.",
"value": ""
},
"ENTITY_TYPE_ID": {
"description": "The user type id for entity users.",
"value": ""
},
"SERVICE_AUTH_SECRET": {
"description": "The authorization header value sent by the hook .",
"value": ""
},
"DELEGATED_ACCESS_CLAIMS":{
"description": "Space seperated list of attributes to patch as claims in the access token",
"value": "",
"required": false
},
"DELEGATED_IDENTITY_CLAIMS": {
"description": "Space seperated list of attributes to patch as claims in the identity token.",
"value": "",
"required": false
},
"LOG_LEVEL": {
"description": "Logging priority, using hte npm log levels.",
"value": "info"
}
},
"success_url": "/"
}