-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapiman-realm.json
103 lines (103 loc) · 3.85 KB
/
apiman-realm.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
{
"realm" : "apiman",
"enabled" : true,
"accessTokenLifespan" : 240,
"accessCodeLifespan" : 60,
"accessCodeLifespanUserAction" : 300,
"ssoSessionIdleTimeout" : 600,
"ssoSessionMaxLifespan" : 36000,
"passwordCredentialGrantAllowed" : true,
"sslRequired" : "external",
"registrationAllowed" : true,
"social" : false,
"updateProfileOnInitialSocialLogin" : false,
"privateKey" : "MIICXAIBAAKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQABAoGAfmO8gVhyBxdqlxmIuglbz8bcjQbhXJLR2EoS8ngTXmN1bo2L90M0mUKSdc7qF10LgETBzqL8jYlQIbt+e6TH8fcEpKCjUlyq0Mf/vVbfZSNaVycY13nTzo27iPyWQHK5NLuJzn1xvxxrUeXI6A2WFpGEBLbHjwpx5WQG9A+2scECQQDvdn9NE75HPTVPxBqsEd2z10TKkl9CZxu10Qby3iQQmWLEJ9LNmy3acvKrE3gMiYNWb6xHPKiIqOR1as7L24aTAkEAtyvQOlCvr5kAjVqrEKXalj0Tzewjweuxc0pskvArTI2Oo070h65GpoIKLc9jf+UA69cRtquwP93aZKtW06U8dQJAF2Y44ks/mK5+eyDqik3koCI08qaC8HYq2wVl7G2QkJ6sbAaILtcvD92ToOvyGyeE0flvmDZxMYlvaZnaQ0lcSQJBAKZU6umJi3/xeEbkJqMfeLclD27XGEFoPeNrmdx0q10Azp4NfJAY+Z8KRyQCR2BEG+oNitBOZ+YXF9KCpH3cdmECQHEigJhYg+ykOvr1aiZUMFT72HU0jnmQe2FVekuG+LJUt2Tm7GtMjTFoGpf0JwrVuZN39fOYAlo+nTixgeW7X8Y=",
"publicKey" : "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQAB",
"requiredCredentials" : [ "password" ],
"loginTheme" : "apiman",
"users" : [
{
"username" : "admin",
"enabled" : true,
"email" : "admin@example.org",
"firstName" : "apiman",
"lastName" : "admin",
"credentials" : [
{
"type" : "password",
"value" : "admin123!"
}
],
"realmRoles" : [ "apiuser", "apiadmin" ],
"applicationRoles" : {
"realm-management" : [ "realm-admin" ]
}
},
{
"username" : "apimanager",
"enabled" : true,
"email" : "apimanager@example.org",
"firstName" : "api",
"lastName" : "manager",
"credentials" : [
{
"type" : "password",
"value" : "apiman123!"
}
],
"realmRoles" : [ "apipublisher" ],
"applicationRoles" : {
}
}
],
"roles" : {
"realm" : [
{
"name" : "apiuser",
"description" : "User privileges."
},
{
"name" : "apiadmin",
"description" : "Administrator privileges."
},
{
"name" : "apipublisher",
"description" : "Required to publish to the API Gateway."
}
]
},
"defaultRoles" : [
"apiuser"
],
"applications" : [
{
"name" : "apimanui",
"enabled" : true,
"baseUrl" : "/apimanui",
"redirectUris" : [
"https://192.168.59.103:9443/apimanui/*", "http://192.168.59.103:9080/apimanui/*"
],
"secret" : "password"
},
{
"name" : "apiman",
"enabled" : true,
"baseUrl" : "/apiman",
"redirectUris" : [
"/apiman/*"
],
"secret" : "password",
"webOrigins" : [ "*" ]
},
{
"name" : "apiman-gateway-api",
"enabled" : true,
"baseUrl" : "/apiman-gateway-api",
"redirectUris" : [
"/apiman-gateway-api/*"
],
"secret" : "password",
"webOrigins" : [ "*" ]
}
]
}