Hi, I would like to create a few users that only can see their respective DAGs and have no global access like user administration. I have enabled password authentication and created the initial user as instructed here:
https://airflow.incubator.apache.org/security.html?highlight=multi%20tenancy#web-authentication My airflow.cfg has the following settings: # Set to true to turn on authentication: # http://pythonhosted.org/airflow/security.html#web-authentication authenticate = True auth_backend = airflow.contrib.auth.backends.password_auth # Filter the list of dags by owner name (requires authentication to be enabled) filter_by_owner = True The (admin?) user that I created will after login see all DAGs (even though filtering was enabled) and is able to create other users. However, while creating new users through the UI, there seems to be no way to specify a password? Thanks, Thomas
