-
Has anyone had any recent success with Redash 10.10 and Azure for SAML? We've overcome some initial issues in relation to the set-up with thanks to the PR at https://github.com/getredash/redash/pull/6202/files and made sure we have all the right security updates for pysaml2 etc, but we are still getting a verification failure when the user is returned from the Azure login. It's made us wonder if this is actually working for anyone. Thanks in advance for assistance, we will share anything we learn or overcome as we proceed. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Hi All, Just revisiting this question - we've not made any progress with SAML on Redash 10.10 (we get a signature verification error in the logs on return from Azure login).I appreciate everyone's time is tight - but can I get a vote to see if anyone has this working or if we should stop perusing this? Just a "Yes we use it" or "No, never worked for us" would be really helpful at this stage. Thanks all :-) |
Beta Was this translation helpful? Give feedback.
-
@DSigmund do you know the answer to this question? |
Beta Was this translation helpful? Give feedback.
-
Well, i can just say using SAML and ADFD it works as expected. Did not test it with Azure AD Login |
Beta Was this translation helpful? Give feedback.
-
Thanks for coming back on this, it is really helpful to know this is working with ADFD as it gives us a potential starting point. We will see if this is something we can test and feedback on any outcomes. |
Beta Was this translation helpful? Give feedback.
-
Now Resolved: After confirmation that others had this working (thumbs up to DSigmund), we revisited our SAML implementation across every stage and have managed to get SAML working. The key considerations for us were:
at line 88, which indicates where the entity_id is being set (as per the PR at https://github.com/getredash/redash/pull/6202/files).
a) SAML Single Sign-on URL to a https://login.microsoftonline.com/{YOUR-PRIVATE-VALUE}/saml2 Hopefully this will help anyone else aiming to setup SAML with Entra. |
Beta Was this translation helpful? Give feedback.
Now Resolved:
After confirmation that others had this working (thumbs up to DSigmund), we revisited our SAML implementation across every stage and have managed to get SAML working. The key considerations for us were:
at line 88, which indicates where the entity_id is being set (as per the PR at https://github.com/getredash/reda…