From 92cb790c2ccd7ff676e77be8d3ce4d2996c300a1 Mon Sep 17 00:00:00 2001 From: Doug Beatty <44704949+dbeatty10@users.noreply.github.com> Date: Mon, 30 Oct 2023 12:41:44 -0600 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Matt Shaver <60105315+matthewshaver@users.noreply.github.com> --- website/docs/reference/global-configs/about-global-configs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/reference/global-configs/about-global-configs.md b/website/docs/reference/global-configs/about-global-configs.md index fa25d27059e..9d1691812b5 100644 --- a/website/docs/reference/global-configs/about-global-configs.md +++ b/website/docs/reference/global-configs/about-global-configs.md @@ -10,9 +10,9 @@ Global configs control things like the visual output of logs, the manner in whic ### Global config precedence -Starting in v1.0, you can set global configs in three places. dbt will pick the config in the following order (lower takes priority): +Starting in v1.0, you can set global configs in three places. dbt will evaluate the configs in the following order: 1. [user config](https://docs.getdbt.com/reference/global-configs/yaml-configurations) 1. [environment variable](https://docs.getdbt.com/reference/global-configs/environment-variable-configs) 1. [CLI flag](https://docs.getdbt.com/reference/global-configs/command-line-flags) -i.e., if all three are provided, then the CLI flag takes precedence. +Each config is prioritized over the previous one. For example, if all three are provided, then the CLI flag takes precedence.