Fix typo in keystone-httpd template

For backwards compatiblity I have left in the original incorrect spelling,
this patch should be backported.

Change-Id: I8a1d7e8d31b43b70de062d5bbf2f648c71014af0
This commit is contained in:
Georgina 2021-06-30 11:39:35 +00:00
parent 713a0576d8
commit 9c4f9ef4f1
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ Listen {{ keystone_service_port }}
{% if keystone_sp_apache_mod_auth_openidc -%}
OIDCClaimPrefix "{{ keystone_sp.trusted_idp_list.0.oidc_claim_prefix | default('OIDC-') }}"
OIDCResponseType "{{ keystone_sp.trusted_idp_list.0.oidc_resp_type | default('id_token') }}"
OIDCScope "{{ keystone_sp.trusted_idp_list.0.idc_scope | default('openid email profile') }}"
OIDCScope "{{ keystone_sp.trusted_idp_list.0.idc_scope | default(keystone_sp.trusted_idp_list.0.oidc_scope | default('openid email profile')) }}"
OIDCProviderMetadataURL {{ keystone_sp.trusted_idp_list.0.oidc_provider_metadata_url }}
OIDCClientID {{ keystone_sp.trusted_idp_list.0.oidc_client_id }}
OIDCClientSecret {{ keystone_sp.trusted_idp_list.0.oidc_client_secret }}