forked from fivetran/dbt_fivetran_log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt_project.yml
28 lines (26 loc) · 1.03 KB
/
dbt_project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
config-version: 2
name: 'fivetran_log'
version: '0.7.4'
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
fivetran_log:
+materialized: table
+schema: fivetran_log
staging:
+schema: stg_fivetran_log
tmp:
+materialized: view
vars:
fivetran_log:
account: "{{ source('fivetran_log', 'account') }}"
account_membership: "{{ source('fivetran_log', 'account_membership') }}"
incremental_mar: "{{ source('fivetran_log', 'incremental_mar') }}"
connector: "{{ source('fivetran_log', 'connector') }}"
credits_used: "{{ source('fivetran_log', 'credits_used') }}"
destination: "{{ source('fivetran_log', 'destination') }}"
destination_membership: "{{ source('fivetran_log', 'destination_membership') }}"
log: "{{ source('fivetran_log', 'log') }}"
transformation: "{{ source('fivetran_log', 'transformation') }}"
trigger_table: "{{ source('fivetran_log', 'trigger_table') }}"
user: "{{ source('fivetran_log', 'user') }}"
usage_cost: "{{ source('fivetran_log', 'usage_cost') }}"