-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrealm.json
More file actions
53 lines (53 loc) · 1.55 KB
/
Copy pathrealm.json
File metadata and controls
53 lines (53 loc) · 1.55 KB
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
{
"id":"${KEYCLOAK_REALM_NAME}",
"realm":"${KEYCLOAK_REALM_NAME}",
"sslRequired":"none",
"enabled":true,
"eventsEnabled":true,
"eventsExpiration":900,
"adminEventsEnabled":true,
"adminEventsDetailsEnabled":true,
"attributes":{
"adminEventsExpiration":"900"
},
"clients":[
{
"id":"${KEYCLOAK_CLIENT_NAME}",
"clientId":"${KEYCLOAK_CLIENT_NAME}",
"name":"${KEYCLOAK_CLIENT_NAME}",
"clientAuthenticatorType":"client-secret",
"secret":"${KEYCLOAK_CLIENT_SECRET}",
"enabled":true,
"alwaysDisplayInConsole":true,
"publicClient":false,
"rootUrl":"${KEYCLOAK_CLIENT_ROOT_URL}",
"baseUrl":"${KEYCLOAK_CLIENT_HOME_URL}",
"adminUrl":"${KEYCLOAK_CLIENT_ADMIN_URL}",
"redirectUris":[
"${KEYCLOAK_CLIENT_REDIRECT_URL}/*"
],
"webOrigins":[
"${KEYCLOAK_CLIENT_ROOT_URL}"
]
}
],
"users":[
{
"id":"admin",
"email":"no-reply@hel.fi",
"username":"${KEYCLOAK_CLIENT_ADMIN_USERNAME}",
"enabled":true,
"emailVerified":true,
"credentials":[
{
"temporary":false,
"type":"password",
"value":"${KEYCLOAK_CLIENT_ADMIN_PASSWORD}"
}
],
"realmRoles":[
"default-roles-${KEYCLOAK_REALM_NAME}"
]
}
]
}