Configuration Reference

This page contains the list of all available Airflow configurations for the apache-airflow-providers-standard provider that can be set in the airflow.cfg file or using environment variables.

Note

The configuration embedded in provider packages started to be used as of Airflow 2.7.0. Previously the configuration was described and configured in the Airflow core package - so if you are using Airflow below 2.7.0, look at Airflow documentation for the list of available configuration options that were available in Airflow core.

Note

For more information see Setting Configuration Options.

Sections:

[standard]

Options for the standard provider operators.

venv_install_method

Which python tooling should be used to install the virtual environment.

The following options are available: - auto: Automatically select, use uv if available, otherwise use pip. - pip: Use pip to install the virtual environment. - uv: Use uv to install the virtual environment. Must be available in environment PATH.

Type

string

Default

auto

Environment Variable

AIRFLOW__STANDARD__VENV_INSTALL_METHOD

Example

uv

Was this entry helpful?