From 1ad6e3657b6e72f1d6355f31edebad7a9b8537e3 Mon Sep 17 00:00:00 2001 From: Eric Baumann <24817191+ericbaumann@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:17:48 -0500 Subject: [PATCH 1/2] Correct details about DBT_CLOUD_ENVIRONMENT_TYPE --- website/docs/docs/build/environment-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/build/environment-variables.md b/website/docs/docs/build/environment-variables.md index e9381644713..c24090db536 100644 --- a/website/docs/docs/build/environment-variables.md +++ b/website/docs/docs/build/environment-variables.md @@ -118,7 +118,7 @@ The following environment variables are set automatically: - `DBT_ENV` — This key is reserved for the dbt Cloud application and will always resolve to 'prod'. For deployment runs only. - `DBT_CLOUD_ENVIRONMENT_NAME` — The name of the dbt Cloud environment in which `dbt` is running. -- `DBT_CLOUD_ENVIRONMENT_TYPE` — The type of dbt Cloud environment in which `dbt` is running. The valid values are `development` or `deployment`. +- `DBT_CLOUD_ENVIRONMENT_TYPE` — The type of dbt Cloud environment in which `dbt` is running. The valid values are `dev`, `staging`, or `prod`. This value can remain unset, so be sure to access it with a default (e.g. `{{env_var('DBT_CLOUD_ENVIRONMENT_TYPE', '')}}`). #### Run details From 736634807d4e0410d3b0097154d9814af8a2cb59 Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:21:33 -0500 Subject: [PATCH 2/2] Update website/docs/docs/build/environment-variables.md --- website/docs/docs/build/environment-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/build/environment-variables.md b/website/docs/docs/build/environment-variables.md index c24090db536..99129cea8c9 100644 --- a/website/docs/docs/build/environment-variables.md +++ b/website/docs/docs/build/environment-variables.md @@ -118,7 +118,7 @@ The following environment variables are set automatically: - `DBT_ENV` — This key is reserved for the dbt Cloud application and will always resolve to 'prod'. For deployment runs only. - `DBT_CLOUD_ENVIRONMENT_NAME` — The name of the dbt Cloud environment in which `dbt` is running. -- `DBT_CLOUD_ENVIRONMENT_TYPE` — The type of dbt Cloud environment in which `dbt` is running. The valid values are `dev`, `staging`, or `prod`. This value can remain unset, so be sure to access it with a default (e.g. `{{env_var('DBT_CLOUD_ENVIRONMENT_TYPE', '')}}`). +- `DBT_CLOUD_ENVIRONMENT_TYPE` — The type of dbt Cloud environment in which `dbt` is running. The valid values are `dev`, `staging`, or `prod`. It can be unset, so use a default like `{{env_var('DBT_CLOUD_ENVIRONMENT_TYPE', '')}}`. #### Run details