Skip to content

Commit

Permalink
Allow line breaks with one line format of saml_idp_cert
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Sep 23, 2023
1 parent 5cffadd commit b1a099b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roles/redmine/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ redmine_saml_name_identifier_format: 'urn:oasis:names:tc:SAML:2.0:nameid-format:
# This would be on the identity provider
# redmine_saml_idp_slo_service_url: 'https://sso.example.com/saml2/idp/SingleLogoutService.php'
# Which redmine field is used as name_identifier_value for SAML logout
redmine_saml_name_identifier_value: 'mail'
redmine_saml_name_identifier_value: mail
redmine_saml_allowed_clock_drift: 2
# Seperator for mapping
# redmine_saml_attribute_mapping_sep: '.'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require Rails.root.join('plugins/redmine_saml/lib/redmine_saml/base')
{% endif %}
{% endif %}
{% if saml_idp_cert != '' %}
idp_cert: '{{ saml_idp_cert }}',
idp_cert: "{{ saml_idp_cert }}",
{% endif %}
{% if saml_idp_slo_service_url != '' %}
idp_slo_service_url: '{{ saml_idp_slo_service_url }}',
Expand Down

0 comments on commit b1a099b

Please sign in to comment.