Skip to content

Commit

Permalink
new EB 6.15 features
Browse files Browse the repository at this point in the history
  • Loading branch information
thijskh committed Sep 25, 2024
1 parent a2f78f2 commit 5677c82
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions roles/engineblock/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ engine_feature_enable_sso_notification: 0
engine_feature_enable_sso_session_cookie: 0
engine_feature_enable_consent: 1
engine_feature_stepup_override_entityid: 0
engine_feature_idp_initiated_flow: 1

engine_api_feature_metadata_push: 1
engine_api_feature_consent_listing: 1
Expand Down
12 changes: 12 additions & 0 deletions roles/engineblock/templates/parameters.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ parameters:
feature_enable_sso_session_cookie: {{ engine_feature_enable_sso_session_cookie | bool | to_json }}
feature_enable_consent: {{ engine_feature_enable_consent | bool | to_json }}
feature_stepup_sfo_override_engine_entityid: {{ engine_feature_stepup_override_entityid | bool | to_json }}
feature_enable_idp_initiated_flow: {{ engine_feature_idp_initiated_flow | bool | to_json }}

##########################################################################################
## PROFILE SETTINGS
##########################################################################################
Expand Down Expand Up @@ -297,3 +299,13 @@ parameters:
# The time the cookie expires. This is a timestamp in number of seconds since the authentication.
# If set to 0 the cookie will expire at the end of the session (when the browser closes).
sso_session_cookie_max_age: 0

##########################################################################################
## Authentication log enrichment
##########################################################################################
# When a user successfully authenticates and additional logging to the authentication log is desired, the following
# parameter can be used to define a mapping of attributes that will be used to enrich the authentication log.
# A (list) mapping is for example <attributeLabel>: <attributeName> where the label represents the label that is
# used in the authentication log record. The attributeName will be searched in the response attributes and if present
# the log data will be enriched. The values of the response attributes are the final values after ARP and Attribute Manipulation.
auth.log.attributes: []

0 comments on commit 5677c82

Please sign in to comment.