-
-
Save jwalgemoed/ddf0c891e92924cdd531448e7d1e3320 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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