is there any possibility for an admin to prevent a DAG from using a connection ID in Airflow?
Purpose : Prevent a developer from using a specific connection.
For exemple, let’s configure the team_a DAG with access_control = {“team_a”: {“can_edit”, “can_read”}}. This DAG can use CONN_01 and CONN_002, but cannot use CONN_003. So any DAG using with CONN_003 can not be run or acces by user of team A.
This granurity of right can be manageable by Airflow?