forked from fivetran/dbt_fivetran_log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt_project.yml
25 lines (23 loc) · 892 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
config-version: 2
name: 'fivetran_log'
version: '1.9.1'
require-dbt-version: [">=1.8.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') }}"