Complete the code to enable RBAC in Airflow configuration.
rbac = [1]Setting rbac = True in the Airflow configuration enables Role-Based Access Control.
Complete the command to create a new role named 'data_engineer' in Airflow CLI.
airflow roles create [1]The command airflow roles create data_engineer creates a new role named 'data_engineer'.
Fix the error in the command to assign the 'Viewer' role to user 'alice'.
airflow users add-role --username alice --role [1]The role name is case-sensitive and should be 'Viewer' when assigning roles via CLI.
Fill both blanks to create a user 'bob' with email 'bob@example.com' and assign the 'Admin' role.
airflow users create --username [1] --email [2] --role Admin --password secret
The username is 'bob' and the email is 'bob@example.com' to create the user correctly.
Fill all three blanks to list all roles, filter by name containing 'Admin', and sort by name descending.
airflow roles list | grep [1] | sort [2] [3]
Use grep Admin to filter roles containing 'Admin', then sort -n -r to sort numerically in descending order.