Hi, Does datahub support whitelist kind of feature...
# ui
s
Hi, Does datahub support whitelist kind of features for users so that allowing specific users to login.
b
datahub rely on OIDC to do the access restriction.
s
Thanks xL. I am looking google oauth configuration but currently no way to do whitelist users in google client console.
I might need to use customized version of frontend.
If you only want a certain set of users, another option is to provide your own user.props file:
This would allow you to customize which accounts can login- however, it would require manual work each time you wanted to whitelist a new user
b
you can try creating your own instance of keycloak server (docker container), then add the users allowed to access the datahub client.
s
Thanks for the comments. I think frequent deployment doesn't matter in our company by chaning user.props file. didn't know about the concept of keycloak server. Will check it too!
Copy code
/datahub-frontend/conf $ cat user.props
datahub:datahub
the default user.props file has
datahub
user, but other uses can still login w/ google auth. I think keycloak server is needed for accurate user access restriction as xL suggested.