Files
rustfs/scripts/test/fixtures/keycloak-rustfs-ci-realm.json
T
2026-08-25 21:20:03 +08:00

45 lines
1019 B
JSON

{
"realm": "rustfs-ci",
"enabled": true,
"sslRequired": "none",
"accessTokenLifespan": 300,
"clients": [
{
"clientId": "rustfs-ci",
"secret": "rustfs-ci-secret",
"enabled": true,
"protocol": "openid-connect",
"publicClient": false,
"standardFlowEnabled": false,
"directAccessGrantsEnabled": true
},
{
"clientId": "wrong-audience",
"secret": "wrong-audience-secret",
"enabled": true,
"protocol": "openid-connect",
"publicClient": false,
"standardFlowEnabled": false,
"directAccessGrantsEnabled": true
}
],
"users": [
{
"id": "00000000-0000-0000-0000-000000000001",
"username": "alice",
"firstName": "Alice",
"lastName": "RustFS",
"email": "alice@example.test",
"emailVerified": true,
"enabled": true,
"credentials": [
{
"type": "password",
"value": "alice-password",
"temporary": false
}
]
}
]
}