hydra-saml: config list titre/description/option pour internationalisation
This commit is contained in:
parent
3b7b187a60
commit
ce501345d4
|
@ -110,12 +110,13 @@ hydra_passwordless_attributes_rewrite_rules:
|
||||||
# Hydra SAML configuration
|
# Hydra SAML configuration
|
||||||
|
|
||||||
enable_hydra_saml: yes
|
enable_hydra_saml: yes
|
||||||
hydra_saml_app_title: SAML
|
hydra_saml_app_title: {}
|
||||||
hydra_saml_app_description: Authentification via SAML
|
hydra_saml_app_description: {}
|
||||||
hydra_saml_app_icon_url:
|
hydra_saml_app_icon_url:
|
||||||
hydra_saml_identity_provider_id: saml
|
hydra_saml_identity_provider_id: saml
|
||||||
hydra_saml_idp_entity_id: https://samltest.id/saml/idp
|
hydra_saml_idp_entity_id: https://samltest.id/saml/idp
|
||||||
hydra_saml_idp_metadata_url: https://samltest.id/saml/idp
|
hydra_saml_idp_metadata_url: https://samltest.id/saml/idp
|
||||||
|
hydra_saml_app_options: {}
|
||||||
|
|
||||||
# Liste des URLs autorisées pour la redirection post-login/logout sur le service shibboleth-sp
|
# Liste des URLs autorisées pour la redirection post-login/logout sur le service shibboleth-sp
|
||||||
hydra_saml_allowed_redirects: []
|
hydra_saml_allowed_redirects: []
|
||||||
|
|
|
@ -16,14 +16,21 @@ hydra:
|
||||||
{% if enable_hydra_saml %}
|
{% if enable_hydra_saml %}
|
||||||
- id: {{ hydra_saml_identity_provider_id | default("saml") }}
|
- id: {{ hydra_saml_identity_provider_id | default("saml") }}
|
||||||
title:
|
title:
|
||||||
fr: "{{ hydra_saml_app_title }}"
|
fr: "{{ hydra_saml_app_title.fr }}"
|
||||||
|
en: "{{ hydra_saml_app_title.en | default("{{ hydra_saml_app_title.fr }}") }}"
|
||||||
description:
|
description:
|
||||||
fr: "{{ hydra_saml_app_description }}"
|
fr: "{{ hydra_saml_app_description.fr }}"
|
||||||
|
en: "{{ hydra_saml_app_description.en | default("{{ hydra_saml_app_description.fr }}") }}"
|
||||||
login_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_saml_base_path }}/login"
|
login_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_saml_base_path }}/login"
|
||||||
consent_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_saml_base_path }}/consent"
|
consent_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_saml_base_path }}/consent"
|
||||||
logout_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_saml_base_path }}/logout"
|
logout_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_saml_base_path }}/logout"
|
||||||
attributes_rewrite_rules: {{ hydra_saml_attributes_rewrite_rules | to_json }}
|
attributes_rewrite_rules: {{ hydra_saml_attributes_rewrite_rules | to_json }}
|
||||||
icon_url: "{{ hydra_saml_app_icon_url }}"
|
icon_url: "{{ hydra_saml_app_icon_url }}"
|
||||||
|
options:
|
||||||
|
icon_url:
|
||||||
|
fr: "{{ hydra_saml_app_options.icon_url.fr }}"
|
||||||
|
en: "{{ hydra_saml_app_options.icon_url.en | default("{{ hydra_saml_app_options.icon_url.fr }}") }}"
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if enable_hydra_oidc %}
|
{% if enable_hydra_oidc %}
|
||||||
- id: {{ hydra_oidc_identity_provider_id | default("oidc") }}
|
- id: {{ hydra_oidc_identity_provider_id | default("oidc") }}
|
||||||
|
|
Loading…
Reference in New Issue