Thinking about implementing integrated login authentication? #35584
-
I know from the
My thought after seeing these log entries is, has Airflow considered introducing unified login authentication to allow the above code? For example, can we consider integrating 3 logins, one through DB, one through OAuth2, and one through SAML, through a package or implementation like Flask-Multipass? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
At that moment authentication mechanism reworked step-by-step, see: So maybe it would be available or already available. cc @vincbeck, when you have time, can look at this discussion? |
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply @Taragolis . I have read the history you attached and understand it. |
Beta Was this translation helpful? Give feedback.
No. Customizing the security manager is a feature of the FAB auth manager (sorry for all the different names), so if you want to bring your own security manager, you do not need to change the config
core/auth_manager
(default being the FAB auth manager) but you need to specify it usingSECURITY_MANAGER_CLASS
. See documentation.