fix: default hydra apps titles/descriptions templating
This commit is contained in:
parent
7e0da81478
commit
f1ad86a80d
|
@ -5,10 +5,10 @@ hydra:
|
||||||
- id: {{ hydra_passwordless_identity_provider_id | default("passwordless") }}
|
- id: {{ hydra_passwordless_identity_provider_id | default("passwordless") }}
|
||||||
title:
|
title:
|
||||||
fr: "{{ hydra_passwordless_app_title.fr }}"
|
fr: "{{ hydra_passwordless_app_title.fr }}"
|
||||||
en: "{{ hydra_passwordless_app_title.en | default("{{ hydra_passwordless_app_title.fr }}") }}"
|
en: "{{ hydra_passwordless_app_title.en | default(hydra_passwordless_app_title.fr) }}"
|
||||||
description:
|
description:
|
||||||
fr: "{{ hydra_passwordless_app_description.fr }}"
|
fr: "{{ hydra_passwordless_app_description.fr }}"
|
||||||
en: "{{ hydra_passwordless_app_description.en | default("{{ hydra_passwordless_app_description.fr }}") }}"
|
en: "{{ hydra_passwordless_app_description.en | default(hydra_passwordless_app_description.fr) }}"
|
||||||
login_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_passwordless_base_path }}/login"
|
login_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_passwordless_base_path }}/login"
|
||||||
consent_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_passwordless_base_path }}/consent"
|
consent_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_passwordless_base_path }}/consent"
|
||||||
logout_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_passwordless_base_path }}/logout"
|
logout_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_passwordless_base_path }}/logout"
|
||||||
|
@ -19,10 +19,10 @@ hydra:
|
||||||
- id: {{ hydra_saml_identity_provider_id | default("saml") }}
|
- id: {{ hydra_saml_identity_provider_id | default("saml") }}
|
||||||
title:
|
title:
|
||||||
fr: "{{ hydra_saml_app_title.fr }}"
|
fr: "{{ hydra_saml_app_title.fr }}"
|
||||||
en: "{{ hydra_saml_app_title.en | default("{{ 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 }}"
|
fr: "{{ hydra_saml_app_description.fr }}"
|
||||||
en: "{{ hydra_saml_app_description.en | default("{{ 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"
|
||||||
|
@ -31,16 +31,16 @@ hydra:
|
||||||
options:
|
options:
|
||||||
icon_url:
|
icon_url:
|
||||||
fr: "{{ hydra_saml_app_options.icon_url.fr }}"
|
fr: "{{ hydra_saml_app_options.icon_url.fr }}"
|
||||||
en: "{{ hydra_saml_app_options.icon_url.en | default("{{ 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") }}
|
||||||
title:
|
title:
|
||||||
fr: "{{ hydra_oidc_app_title.fr }}"
|
fr: "{{ hydra_oidc_app_title.fr }}"
|
||||||
en: "{{ hydra_oidc_app_title.en | default("{{ hydra_oidc_app_title.fr }}") }}"
|
en: "{{ hydra_oidc_app_title.en | default(hydra_oidc_app_title.fr) }}"
|
||||||
description:
|
description:
|
||||||
fr: "{{ hydra_oidc_app_description.fr }}"
|
fr: "{{ hydra_oidc_app_description.fr }}"
|
||||||
en: "{{ hydra_oidc_app_description.en | default("{{ hydra_oidc_app_description.fr }}") }}"
|
en: "{{ hydra_oidc_app_description.en | default(hydra_oidc_app_description.fr) }}"
|
||||||
login_url: "{{ hydra_oidc_base_url }}{{ haproxy_hydra_oidc_base_path }}/login"
|
login_url: "{{ hydra_oidc_base_url }}{{ haproxy_hydra_oidc_base_path }}/login"
|
||||||
consent_url: "{{ hydra_oidc_base_url }}{{ haproxy_hydra_oidc_base_path }}/consent"
|
consent_url: "{{ hydra_oidc_base_url }}{{ haproxy_hydra_oidc_base_path }}/consent"
|
||||||
logout_url: "{{ hydra_oidc_base_url }}{{ haproxy_hydra_oidc_base_path }}/logout"
|
logout_url: "{{ hydra_oidc_base_url }}{{ haproxy_hydra_oidc_base_path }}/logout"
|
||||||
|
@ -49,16 +49,16 @@ hydra:
|
||||||
options:
|
options:
|
||||||
icon_url:
|
icon_url:
|
||||||
fr: "{{ hydra_oidc_app_options.icon_url.fr }}"
|
fr: "{{ hydra_oidc_app_options.icon_url.fr }}"
|
||||||
en: "{{ hydra_oidc_app_options.icon_url.en | default("{{ hydra_oidc_app_options.icon_url.fr }}") }}"
|
en: "{{ hydra_oidc_app_options.icon_url.en | default(hydra_oidc_app_options.icon_url.fr) }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if enable_hydra_ldap %}
|
{% if enable_hydra_ldap %}
|
||||||
- id: ldap
|
- id: ldap
|
||||||
title:
|
title:
|
||||||
fr: "{{ hydra_ldap_app_title.fr }}"
|
fr: "{{ hydra_ldap_app_title.fr }}"
|
||||||
en: "{{ hydra_ldap_app_title.en | default("{{ hydra_ldap_app_title.fr }}") }}"
|
en: "{{ hydra_ldap_app_title.en | default(hydra_ldap_app_title.fr) }}"
|
||||||
description:
|
description:
|
||||||
fr: "{{ hydra_ldap_app_description.fr }}"
|
fr: "{{ hydra_ldap_app_description.fr }}"
|
||||||
en: "{{ hydra_ldap_app_description.en | default("{{ hydra_ldap_app_description.fr }}") }}"
|
en: "{{ hydra_ldap_app_description.en | default(hydra_ldap_app_description.fr) }}"
|
||||||
login_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_ldap_base_path }}/auth/login"
|
login_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_ldap_base_path }}/auth/login"
|
||||||
consent_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_ldap_base_path }}/auth/consent"
|
consent_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_ldap_base_path }}/auth/consent"
|
||||||
logout_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_ldap_base_path }}/auth/logout"
|
logout_url: "{{ haproxy_public_base_url }}{{ haproxy_hydra_ldap_base_path }}/auth/logout"
|
||||||
|
|
Loading…
Reference in New Issue