From ca3e53742137fa68269b24829cd410a3f0db0dd7 Mon Sep 17 00:00:00 2001 From: Kaxil Naik Date: Fri, 17 Apr 2020 13:39:14 +0100 Subject: [PATCH] Make doc clearer about Airflow Variables using Environment Variables (#8427) (cherry picked from commit fa262c12f87102a7ae1abb11ea7f0d5e8be0de47) --- docs/concepts.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/concepts.rst b/docs/concepts.rst index aeebb2e553a3fc..24f663f7c453ad 100644 --- a/docs/concepts.rst +++ b/docs/concepts.rst @@ -676,6 +676,8 @@ You can use them in your DAGs as: Single underscores surround ``VAR``. This is in contrast with the way ``airflow.cfg`` parameters are stored, where double underscores surround the config section name. + Variables set using Environment Variables would not appear in the Airflow UI but you will + be able to use it in your DAG file. Branching =========