vincbeck commented on code in PR #34349:
URL: https://github.com/apache/airflow/pull/34349#discussion_r1341516194


##########
airflow/auth/managers/base_auth_manager.py:
##########
@@ -50,6 +50,10 @@ def get_cli_commands() -> list[CLICommand]:
         """
         return []
 
+    def get_api_blueprint(self) -> None | Blueprint:

Review Comment:
   Following up on this one. I also have a question regarding entry points. 
Documentation says "If the package is installed, Airflow will automatically 
load the registered plugins from the entrypoint list.". It means that if you 
install the package, the plugin will be automatically used. Example: AWS 
provides an auth manager as part of the Amazon provider package. Then, any user 
having installed the Amazon provider package uses automatically the AWS auth 
manager. We do not want that. The admin should specify in the configuration 
which auth manager they want to use, e.g:
   
   ```
   auth_manager = airflow.providers.amazon.aws.auth.auth_manager.AwsAuthManager
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to