From 8178b1dec5885a21c1a66c70ccc2a9c7f03b086b Mon Sep 17 00:00:00 2001 From: Jason Brownstein <79863718+jsnb-devoted@users.noreply.github.com> Date: Fri, 20 Oct 2023 17:08:01 -0700 Subject: [PATCH] Provide an example of meta in dbt_project (#2270) ## Description & motivation It took me a while to figure out why my `meta` tag wasn't being captured in the dbt_project file. I needed it nested under the `config` block. I think it would have helped if there was an example of that. (I deleted all the checklists as it didn't seem like they were needed for this PR) --------- Co-authored-by: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Co-authored-by: Leona B. Campbell <3880403+runleonarun@users.noreply.github.com> --- website/docs/reference/resource-configs/meta.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/website/docs/reference/resource-configs/meta.md b/website/docs/reference/resource-configs/meta.md index aeff9ee6226..65c8b5f908e 100644 --- a/website/docs/reference/resource-configs/meta.md +++ b/website/docs/reference/resource-configs/meta.md @@ -278,4 +278,19 @@ select 1 as id ``` + +### Assign owner in the dbt_project.yml as a config property + + + +```yml +models: + jaffle_shop: + materialized: table + config: + meta: + owner: "@alice" +``` + +