-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathdbt_project.yml
26 lines (24 loc) · 976 Bytes
/
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
config-version: 2
name: 'fivetran_log'
version: '1.11.0'
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
fivetran_log:
+materialized: table
+schema: fivetran_platform
staging:
+schema: stg_fivetran_platform
tmp:
+materialized: view
vars:
fivetran_log:
account: "{{ source('fivetran_platform', 'account') }}"
incremental_mar: "{{ source('fivetran_platform', 'incremental_mar') }}"
connector: "{{ source('fivetran_platform', 'connector') }}"
credits_used: "{{ source('fivetran_platform', 'credits_used') }}"
destination: "{{ source('fivetran_platform', 'destination') }}"
destination_membership: "{{ source('fivetran_platform', 'destination_membership') }}"
log: "{{ source('fivetran_platform', 'log') }}"
user: "{{ source('fivetran_platform', 'user') }}"
usage_cost: "{{ source('fivetran_platform', 'usage_cost') }}"
transformation_runs: "{{ source('fivetran_platform','transformation_runs') }}"