Skip to content

Commit

Permalink
Add notes about passing secrets via environment variables (#40519)
Browse files Browse the repository at this point in the history
(cherry picked from commit 07e6eb8)
  • Loading branch information
potiuk authored and utkarsharma2 committed Jul 2, 2024
1 parent d122959 commit fd46830
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/apache-airflow-providers-cncf-kubernetes/operators.rst
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,15 @@ Example:
callbacks=MyCallback,
)
Passing secrets
^^^^^^^^^^^^^^^

Never use environment variables to pass secrets (for example connection authentication information) to
Kubernetes Pod Operator. Such environment variables will be visible to anyone who has access
to see and describe PODs in Kubernetes. Instead, pass your secrets via native Kubernetes ``Secrets`` or
use Connections and Variables from Airflow. For the latter, you need to have ``apache-airflow`` package
installed in your image in the same version as airflow you run your Kubernetes Pod Operator from).

Reference
^^^^^^^^^
For further information, look at:
Expand Down
11 changes: 11 additions & 0 deletions docs/apache-airflow/security/secrets/mask-sensitive-values.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,14 @@ or
...
The mask must be set before any log/output is produced to have any effect.

NOT masking when using environment variables
""""""""""""""""""""""""""""""""""""""""""""

When you are using some operators - for example :class:`airflow.providers.cncf.kubernetes.operators.pod.KubernetesPodOperator`,
you might be tempted to pass secrets via environment variables. This is very bad practice because the environment
variables are visible to anyone who has access to see the environment of the process - such secrets passed by
environment variables will NOT be masked by Airflow.

If you need to pass secrets to the KubernetesPodOperator, you should use native Kubernetes secrets or
use Airflow Connection or Variables to retrieve the secrets dynamically.

0 comments on commit fd46830

Please sign in to comment.