Leaving password in clear text in logs should be considered a security issue.
Note: the command 'create_user' is sensitive and should probably not be logged at all in my opinion if there is no simple way of obfuscating the password.
Steps to reproduce:
- create a user using `airflow create_user` and providing the password using `--password`
- go to the Browse / Logs view of the UI
- find the creation log containing the password in clear text
The log entry looks like this:
{{
{"host_name": "airflow-web-774c65857f-drgsm", "full_command": "['/usr/local/bin/airflow', 'create_user', '--role', 'Viewer', '--username', 'viewer', '--email', 'viewer-local@example.com', '--firstname', 'viewer', '--lastname', 'airflow', '--password', 'secret']"}}}