Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Last active February 22, 2024 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwalgemoed/ddf0c891e92924cdd531448e7d1e3320 to your computer and use it in GitHub Desktop.
Save jwalgemoed/ddf0c891e92924cdd531448e7d1e3320 to your computer and use it in GitHub Desktop.
{
"users": [
{
"username": "admin",
"email": "admin@example.com",
"firstName": "Admin",
"lastName": "User",
"enabled": true,
"emailVerified": true,
"credentials": [
{
"type": "password",
"value": "admin"
}
],
"attributes": {
"scopes": "profile email address phone offline_access manage_account"
},
"groups": [
"ADMINS",
"USERS"
],
"clientRoles": {
"account": [
"manage-account",
"view-profile"
]
}
},
{
"username": "user",
"email": "user@example.com",
"firstName": "User",
"lastName": "User",
"enabled": true,
"emailVerified": true,
"credentials": [
{
"type": "password",
"value": "user"
}
],
"attributes": {
"scopes": "profile email address phone offline_access manage_account"
},
"groups": [
"USERS"
],
"clientRoles": {
"account": [
"manage-account",
"view-profile"
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment