Adds missing SAML Realm Settings (elastic/x-pack-elasticsearch#4221)
Adds idp.use_single_logout and populate_user_metadata in the SAML Realm Settings Set. Resolves elastic/x-pack-elasticsearch#4219 Original commit: elastic/x-pack-elasticsearch@360f1f744e
This commit is contained in:
parent
77614658d5
commit
d1ed4e0bff
|
@ -75,10 +75,10 @@ public class SamlRealmSettings {
|
|||
* @return The {@link Setting setting configuration} for this realm type
|
||||
*/
|
||||
public static Set<Setting<?>> getSettings() {
|
||||
final Set<Setting<?>> set = Sets.newHashSet(IDP_ENTITY_ID, IDP_METADATA_PATH,
|
||||
final Set<Setting<?>> set = Sets.newHashSet(IDP_ENTITY_ID, IDP_METADATA_PATH, IDP_SINGLE_LOGOUT,
|
||||
SP_ENTITY_ID, SP_ACS, SP_LOGOUT,
|
||||
NAMEID_FORMAT, NAMEID_ALLOW_CREATE, NAMEID_SP_QUALIFIER, FORCE_AUTHN,
|
||||
CLOCK_SKEW,
|
||||
POPULATE_USER_METADATA, CLOCK_SKEW,
|
||||
ENCRYPTION_KEY_ALIAS, SIGNING_KEY_ALIAS, SIGNING_MESSAGE_TYPES);
|
||||
set.addAll(ENCRYPTION_SETTINGS.getAllSettings());
|
||||
set.addAll(SIGNING_SETTINGS.getAllSettings());
|
||||
|
|
Loading…
Reference in New Issue