Complete the code to enable LDAP authentication in Airflow's configuration.
[ldap]
auth_backend = [1]To enable LDAP authentication, Airflow requires setting the auth_backend to airflow.contrib.auth.backends.ldap_auth.
Complete the code to set the OAuth authentication backend in Airflow's configuration.
[webserver]
auth_backend = [1]For OAuth authentication, Airflow uses the backend airflow.www.auth.backend.oauth.
Fix the error in the Airflow configuration to correctly enable LDAP authentication.
[ldap]
auth_backend = [1]The correct LDAP backend path is airflow.contrib.auth.backends.ldap_auth. Other options are incorrect or incomplete.
Fill both blanks to configure OAuth client ID and secret in Airflow's configuration.
[oauth] client_id = [1] client_secret = [2]
OAuth requires setting client_id and client_secret with your actual credentials.
Fill all three blanks to configure Airflow to use LDAP authentication with a specific server and base DN.
[ldap] auth_backend = [1] server = [2] basedn = [3]
To configure LDAP authentication, set auth_backend to the LDAP backend path, specify the LDAP server URL, and the basedn for your directory.