Package version:

Container App container environment variable.

interface EnvironmentVar {
    name?: string;
    secretRef?: string;
    value?: string;
}

Properties

name?: string

Environment variable name.

secretRef?: string

Name of the Container App secret from which to pull the environment variable value.

value?: string

Non-secret environment variable value.