Class EnvironmentConfigSoftwareConfig
Inheritance
Inherited Members
Namespace: Pulumi.Gcp.Composer.Outputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class EnvironmentConfigSoftwareConfig
Fields
View SourceAirflowConfigOverrides
(Optional) Apache Airflow configuration properties to override. Property keys contain the section and property names, separated by a hyphen, for example "core-dags_are_paused_at_creation".
Declaration
public readonly ImmutableDictionary<string, string> AirflowConfigOverrides
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableDictionary<System.String, System.String> |
EnvVariables
Additional environment variables to provide to the Apache Airflow scheduler, worker, and webserver processes.
Environment variable names must match the regular expression [a-zA-Z_][a-zA-Z0-9_]*.
They cannot specify Apache Airflow software configuration overrides (they cannot match the regular expression
AIRFLOW__[A-Z0-9_]+__[A-Z0-9_]+), and they cannot match any of the following reserved names:
AIRFLOW_HOME
C_FORCE_ROOT
CONTAINER_NAME
DAGS_FOLDER
GCP_PROJECT
GCS_BUCKET
GKE_CLUSTER_NAME
SQL_DATABASE
SQL_INSTANCE
SQL_PASSWORD
SQL_PROJECT
SQL_REGION
SQL_USER
Declaration
public readonly ImmutableDictionary<string, string> EnvVariables
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableDictionary<System.String, System.String> |
ImageVersion
The version of the software running in the environment. This encapsulates both the version of Cloud Composer
functionality and the version of Apache Airflow. It must match the regular expression
composer-[0-9]+\.[0-9]+(\.[0-9]+)?-airflow-[0-9]+\.[0-9]+(\.[0-9]+.*)?.
The Cloud Composer portion of the version is a semantic version.
The portion of the image version following 'airflow-' is an official Apache Airflow repository release name.
See documentation
for allowed release names.
Declaration
public readonly string ImageVersion
Field Value
| Type | Description |
|---|---|
| System.String |
PypiPackages
Custom Python Package Index (PyPI) packages to be installed in the environment. Keys refer to the lowercase package name (e.g. "numpy"). Values are the lowercase extras and version specifier (e.g. "==1.12.0", "[devel,gcp_api]", "[devel]>=1.8.2, <1.9.2"). To specify a package without pinning it to a version specifier, use the empty string as the value.
Declaration
public readonly ImmutableDictionary<string, string> PypiPackages
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableDictionary<System.String, System.String> |
PythonVersion
The major version of Python used to run the Apache Airflow scheduler, worker, and webserver processes. Can be set to '2' or '3'. If not specified, the default is '2'. Cannot be updated.
Declaration
public readonly string PythonVersion
Field Value
| Type | Description |
|---|---|
| System.String |