Set environment variables (original) (raw)

Cloud Composer 3 | Cloud Composer 2 | Cloud Composer 1

This page explains how to set environment variables in your Cloud Composer environment.

You can use environment variables as an alternative toAirflow variables when providing runtime configuration for your DAGs. Airflow variables are set in the Airflow database, while environment variables are set in the Airflow worker's container.

As an example, you can use an environment variable's name as is in a command that is run by a BashOperator, or get this value from the os.environ object in the DAG, or use an Airflow variable instead.

Environment variables are persistent. Once you specify an environment variable, Airflow keeps using it until you remove the variable from your environment.

Cloud Composer sets its own reserved environment variables for controlling environments.

Name format

Environment variables must match the regular expression[a-zA-Z_][a-zA-Z0-9_]*.

Airflow configuration options

It is not possible to specify variables that change Apache Airflow configuration options.

The variables cannot use the AIRFLOW__{SECTION}__{KEY} format or match the regular expression AIRFLOW__[A-Z0-9_]+__[A-Z0-9_]+. For example, it is not possible to set AIRFLOW__WEBSERVER__DAG_DEFAULT_VIEW.

Instead, you can override Airflow configuration options.

Reserved variables

The following variable names are reserved by Cloud Composer. It is not possible to create variables with these names.

Set environment variables for new environments

You can specify environment variables when you create an environment. For more information, see Create environments.

Set environment variables for existing environments

Console

To set environment variables for an existing environment:

  1. In Google Cloud console, go to the Environments page.
    Go to Environments
  2. In the list of environments, click the name of your environment. The Environment details page opens.
  3. Go to the Environment variables tab and click Edit.
  4. Add, change, or delete environment variables for your environment:
    • In the Name field, specify the variable name.
    • In the Value field, specify the variable value.
    • To add an extra variable, click Add environment variable.
    • To delete a variable, hold the pointer over a variable, then clickDelete item.

gcloud

Following arguments control environment variables:

gcloud composer environments update \
  ENVIRONMENT_NAME \
  --location LOCATION \
  --update-env-variables=NAME=VALUE

Replace:

Example:

gcloud composer environments update \
  example-environment \
  --location us-central1 \
  --update-env-variables=EXAMPLE_VARIABLE=True,ANOTHER_VARIABLE=test

API

Construct an environments.patch API request.

In this request:

  1. In the updateMask parameter, specify theconfig.softwareConfig.envVariables mask to replace all existing variables with the specified variables. Variables that you don't specify are deleted.
  2. In the request body, specify variables and their values:
{  
  "config": {  
    "softwareConfig": {  
      "envVariables": {  
        "VAR_NAME": "VAR_VALUE"  
      }  
    }  
  }  
}  

Replace:

Example:

// PATCH https://composer.googleapis.com/v1/projects/example-project/
// locations/us-central1/environments/example-environment?updateMask=
// config.softwareConfig.envVariables
{
  "config": {
    "softwareConfig": {
      "envVariables": {
        "EXAMPLE_VARIABLE": "True",
        "ANOTHER_VARIABLE": "test"
      }
    }
  }
}

Terraform

The env_variables block in the software_config block specifies environment variables.

resource "google_composer_environment" "example" {
  provider = google-beta
  name = "ENVIRONMENT_NAME"
  region = "LOCATION"

  config {

    software_config {

      env_variables = {
        VAR_NAME = "VAR_VALUE"
      }

    }
  }
}

Replace:

Example:

resource "google_composer_environment" "example" {
  provider = google-beta
  name = "example-environment"
  region = "us-central1"

  config {

    software_config {

      env_variables = {
        EXAMPLE_VARIABLE = "True"
        ANOTHER_VARIABLE = "test"
      }
    }
  }
}

What's next