Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: document dbt_tags__tag_source_columns variable #18

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ vars:
# dbt_tags__policy_data_types: # optional, defaults to same policy name as tag name if not specified per policy
# - <tag-name>: ['datatype','list'] # list of tag names, assign list of datatypes. Suffixes policy name with datatypes on assigning policies to tags
# dbt_tags__tag_name_separator: ~ # optional, the default value is tilda. If you use ~ in your tag names then you can set a different separator character here
# dbt_tags__tag_source_columns: # Optional. Enables or disables the tagging of source columns.
# When set to true, it allows the project to tag columns defined in sources.
# By default, this project allows enabling column tagging when using the apply_column_tags() macro.
# Set dbt_tags__tag_source_columns: false to disable source column tagging.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Here are the full list of built-in variables:
- `dbt_tags__allowed_tags`
- `dbt_tags__resource_types`
- `dbt_tags__policy_data_types`

- `dbt_tags__tag_source_columns`
## How to Contribute ❤️

`dbt-tags` is an open-source dbt package. Whether you are a seasoned open-source contributor or a first-time committer, we welcome and encourage you to contribute code, documentation, ideas, or problem statements to this project.
Expand Down
Loading