Skip to content

Commit

Permalink
docs: clarify which fields are masked in the UI (apache#45417)
Browse files Browse the repository at this point in the history
The word 'contains' was used slightly confusingly here: it was meant to mean
'the name field contains any of these strings', but you could also read it as
'the name itself contains any of these strings'. This removes any
ambiguity.
  • Loading branch information
raboof authored Jan 6, 2025
1 parent 413a183 commit f03b1d4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ When masking is enabled, Airflow will always mask the password field of every Co
task.

It will also mask the value of a Variable, rendered template dictionaries, XCom dictionaries or the
field of a Connection's extra JSON blob if the name contains
any words in ('access_token', 'api_key', 'apikey', 'authorization', 'passphrase', 'passwd',
'password', 'private_key', 'secret', 'token'). This list can also be extended:
field of a Connection's extra JSON blob if the name is in the list of known-sensitive fields (i.e. 'access_token',
'api_key', 'apikey', 'authorization', 'passphrase', 'passwd', 'password', 'private_key', 'secret' or 'token').
This list can also be extended:

.. code-block:: ini
Expand Down

0 comments on commit f03b1d4

Please sign in to comment.