This repository has been archived by the owner on Jan 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.sdcportalrc.example
48 lines (48 loc) · 1.61 KB
/
.sdcportalrc.example
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
/*
* The auth provider in this example has been commented out.
* You will default to full access "AdminParty" non-auth.
* If you want to use the sample OAuth configuration you can setup a developer
* account and obtain a consumer key and secret at https://developer.faithlife.com
*
* IMPORTANT: Remove or replace any commented out lines in this file.
*/
{
/* "auth": {
"provider": "oauth",
"requestTokenUrl": "https://auth.logos.com/oauth/v1/initiate",
"authorizeUrl": "https://auth.logos.com/oauth/v1/authorize",
"accessTokenUrl": "https://auth.logos.com/oauth/v1/token",
"consumerKey": "<your-consumer-key-here>",
"consumerSecret": "<your-consumer-secret-here>",
"developerInfoUrl": "https://auth.logos.com/oauth/v1/users/current?setAlias=true",
"developerIdKey": "userId", //userId will differ if not using auth.logos.com
"developerNameKey": "alias", //alias will differ if not using auth.logos.com
"developers": {
// Map of developer ID to available SDC logins:
"123456789": ["Core", "API"],
"912356777": ["API"],
"222000333": ["Core"]
},
"session": {
"secret": "<unique-string-here>"
}
},*/
"sdc" : {
"dataCenters": {
"coal-1": {
"cloudapiUrl": "https://10.88.88.5"
},
"us-west-1": {
"cloudapiUrl": "https://us-west-1.api.joyentcloud.com"
}
},
"users": {
"admin": {
"key": "/Users/sdcportal/admin_rsa", "keyId": "coal-1 sdc key", "login": "admin"
},
"JPC-User": {
"key": "/Users/sdcportal/admin_rsa", "keyId": "us-west-1", "login": "jpcuser"
}
}
}
}