Dear DataHub, I have a question regarding DataHub ...
# troubleshoot
a
Dear DataHub, I have a question regarding DataHub Chrome plugin. I get an error as on the picture. As I understand it happens because SSO (Azure) doesn't work in iframe. Is there any way to make it working? Only with hardcoded credentials ?
l
how have you implemented the sso?
a
a
@bulky-soccer-26729 could likely speak to this!
b
hey there! so the biggest thing that you need to do is make sure your instance is deployed with two specific environment variables set to be picked up in
application.conf
in `datahub-frontend`: 1. AUTH_COOKIE_SAME_SITE = "None" 2. AUTH_COOKIE_SECURE = true
setting these variables will configure your auth cookies to be set so that they can be shared with the extension
if you have SSO configured, then you just need to make sure you login on your browser before opening the extension. once those env variables are deployed and you log in again, they should have those fields set properly on those cookies
a
Thank you, let me check