Marloxo opened a new issue #9372: URL: https://github.com/apache/airflow/issues/9372
**Description** Sensitive variable fields list [here](https://github.com/apache/airflow/blob/master/airflow/www/utils.py#L42) could be extended to be more flexible to include more options. **Use case / motivation** It would be better and more extendable if we can use: - `token` instead of `access_token` - `key` instead of `api_key` and `apikey ` ```PYTHON DEFAULT_SENSITIVE_VARIABLE_FIELDS = ( 'password', 'secret', 'passwd', 'authorization', 'api_key', 'apikey', 'access_token', ) ``` that would give users more freedom in naming their variables in my case we have some variables named: ex: - `TRELLO_KEY` - `TRELLO_TOKEN` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
