Skip to content
Snippets Groups Projects
Commit e7455759 authored by Will Szumski's avatar Will Szumski Committed by Piotr Parczewski
Browse files

Add OIDCDiscoverURL mod_oidc option

This gets rid of one of the steps in the authentication flow.

Closes-Bug: 1930055
Change-Id: I4ed4651b55a912f1d9aec7277bae6bb4776f1e0a
parent 7f2d2033
No related branches found
No related tags found
No related merge requests found
......@@ -79,6 +79,7 @@ LogLevel info
{% for idp in keystone_identity_providers %}
{% if idp.protocol == 'openid' %}
<LocationMatch /v3/auth/OS-FEDERATION/identity_providers/{{ idp.name }}/protocols/{{ idp.protocol }}/websso>
OIDCDiscoverURL {{ keystone_public_url }}/redirect_uri?iss={{ idp.identifier | urlencode }}
Require valid-user
AuthType openid-connect
</LocationMatch>
......
---
fixes:
- |
Fixes an issue with an OIDC authentication flow requiring unnecessary
action from the user. Redirecting to the target IdP page now happens
automatically.
`LP#930055 <https://bugs.launchpad.net/kolla-ansible/+bug/1930055>`__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment