Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions roles/engineblock/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ engine_minimum_execution_time_on_invalid_received_response: 5000
engine_time_frame_for_authentication_loop_in_seconds: 60
engine_maximum_authentication_procedures_allowed: 5

# maximum number of outstandig AuthN requests per session; exceeding this results in a 429
engine_max_authn_per_session: 30

# timeout when doing external queries (e.g., to PDP, AA, SBS)
engine_http_client_timeout: 10

# This PCRE regex is used to blacklist incoming AuthnContextClassRef attributes on. If an empty string is used
# the validation is skipped. The validator will throw an exception if the used regex is invalid.
engine_stepup_authn_context_class_ref_blacklist_regex: '/http:\/\/{{ base_domain | regex_escape }}\/assurance\/loa[1-3]/'
Expand Down
5 changes: 5 additions & 0 deletions roles/engineblock/templates/parameters.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,11 @@ parameters:
## The value for guest qualifier. Can be overridden for specific environments
addgueststatus_guestqualifier: '{{ guest_qualifier | default('') }}'

## the timeout used when querying external sources (PDP, AA, etc)
http_client.timeout: {{ engine_http_client_timeout | int }}
## maximum number of simultaneous open authentications per session (exceed this, and receive a 429)
maximum_authentications_per_session: {{ engine_max_authn_per_session | int }}

## Language cookie settings
cookie.path: {{ cookie_path | default('/') }}
cookie.secure: true
Expand Down