Files
Cleanuparr/e2e/keycloak-realm.json
2026-03-12 22:12:20 +02:00

48 lines
1.2 KiB
JSON

{
"realm": "cleanuparr-test",
"enabled": true,
"sslRequired": "none",
"registrationAllowed": false,
"loginWithEmailAllowed": false,
"duplicateEmailsAllowed": false,
"resetPasswordAllowed": false,
"editUsernameAllowed": false,
"bruteForceProtected": false,
"clients": [
{
"clientId": "cleanuparr",
"name": "Cleanuparr E2E Test Client",
"enabled": true,
"publicClient": false,
"secret": "test-secret",
"redirectUris": ["http://localhost:5000/*"],
"webOrigins": ["http://localhost:5000"],
"standardFlowEnabled": true,
"directAccessGrantsEnabled": true,
"serviceAccountsEnabled": false,
"protocol": "openid-connect",
"attributes": {
"pkce.code.challenge.method": "S256",
"post.logout.redirect.uris": "http://localhost:5000/*"
}
}
],
"users": [
{
"username": "testuser",
"enabled": true,
"email": "testuser@example.com",
"emailVerified": true,
"firstName": "Test",
"lastName": "User",
"credentials": [
{
"type": "password",
"value": "testpass",
"temporary": false
}
]
}
]
}