Add the ability to ignore unavailable realms for a distributed-realm
Overview
A distributed-realm is made up of a list of realms. Each realm in the list is attempted until we either find the user or run out of realms. If a realm happens to be unavailable, we currently stop searching altogether. This is undesirable if the user could have been found in a subsequent realm.
This enhancmend will add an ignore-unavailable-realms boolean attribute to a distributed-realm to allow users to specify that the search should continue on to the next realm if a realm happens to be unavailable.
-
Example configuration:
/subsystem=elytron/distributed-realm=distributedRealm:add(realms=[realm1, realm2], ignore-unavailable-realms=true)
Issue Metadata
Issue
Dev Contacts
QE Contacts
Testing By
[x] Engineering
[ ] QE
Affected Projects or Components
-
WildFly, Security, WildFly-Core, Elytron
Other Interested Projects
Requirements
Hard Requirements
-
It should be possible to configure an
with the optional attributedistributed-realm
which allow users to specify that the search should continue on to the next realm if a realm happens to be unavailable. Default value for theignore-unavailable-realms
attribute will beignore-unavailable-realms
false
.
When
is set to true and realm happens to be unavailable, SecurityRealmUnavailableEvent will be emitted to the corresponding SecurityDomain.
This can be turned off by adding ignore-unavailable-realms
emit-events
attribute and setting it to false
.
emit-events
is a new optional attribute with a default value set to true
.
Nice-to-Have Requirements
Non-Requirements
Test Plan
WildFly integration tests will be added. Tests also will be added to the Elytron testsuite.
Community Documentation
Documentation should be added under elytron/components in the WildFly documentation, describing there added
attribute.ignore-unavailable-realms
Release Note Content
-
New Distributed Realm attribute
enables user to switch to ignore unavailable realms during search and continue searching in subsequent realms.ignore-unavailable-realms