๐Ÿ“ฆ LuisSanchez / users-prototype

๐Ÿ“„ keycloak-realm.json ยท 30 lines
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{
  "realm": "ucab",
  "enabled": true,
  "users": [
    {
      "username": "testuser",
      "email": "user@example.com",
      "enabled": true,
      "credentials": [
        {
          "type": "password",
          "value": "testpassword"
        }
      ]
    }
  ],
  "clients": [
    {
      "clientId": "ucabclient",
      "enabled": true,
      "publicClient": true,
      "redirectUris": ["http://localhost:5050/*"],
      "webOrigins": ["+"],
      "attributes": {
        "post.logout.redirect.uris": "http://localhost:5050/"
      }
    }
  ]
}