-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdbt_project.yml
More file actions
27 lines (25 loc) · 1.08 KB
/
Copy pathdbt_project.yml
File metadata and controls
27 lines (25 loc) · 1.08 KB
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
config-version: 2
name: 'fivetran_log'
version: '2.6.0'
require-dbt-version: [">=1.3.0", "<3.0.0"]
models:
fivetran_log:
+materialized: table
+schema: fivetran_platform
staging:
+schema: stg_fivetran_platform
+materialized: view
vars:
fivetran_log:
account: "{{ source('fivetran_platform', 'account') }}"
incremental_mar: "{{ source('fivetran_platform', 'incremental_mar') }}"
connection: "{{ source('fivetran_platform', 'connection') }}"
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') }}"
connector_sdk_log: "{{ source('fivetran_platform', 'connector_sdk_log') }}"
user: "{{ source('fivetran_platform', 'user') }}"
usage_cost: "{{ source('fivetran_platform', 'usage_cost') }}"
transformation_runs: "{{ source('fivetran_platform','transformation_runs') }}"