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
2 changes: 2 additions & 0 deletions environments/template/group_vars/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,8 @@ myconext:
feature_dry_run_email_cron: true
feature_enable_account_linking: true
feature_use_app: true
feature_use_global_uid: true
feature_force_global_uid_entities: "dummy_non_existing_entity,playground_client"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please turn this into a yaml list, instead of comma separated

sms_api_url: "https://rest.spryngsms.com/v1/messages"
sms_api_route: "default"
sp_entity_id: https://engine.{{ base_domain }}/authentication/sp/metadata
Expand Down
6 changes: 6 additions & 0 deletions roles/myconext/templates/application.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,12 @@ feature:
enable_account_linking: {{ myconext.feature_enable_account_linking }}
# Set to true to show the app login option
use_app: {{ myconext.feature_use_app }}
# When true (default) release the global uid in the uid and eduPersonPrincipalName SAML attributes.
# When false, release the per-SP targeted eduID instead.
use_global_uid: {{ myconext.feature_use_global_uid }}
# SP entityIds that always receive the global uid in the uid and eduPersonPrincipalName SAML attributes,
# even when use_global_uid is false.
force_global_uid_entities: "{{ myconext.feature_force_global_uid_entities }}"

default_affiliate_email_domain: eduid.nl

Expand Down