-
Notifications
You must be signed in to change notification settings - Fork 2
/
dbt_project.yml
23 lines (23 loc) · 1.05 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
name: 'amazon_ads'
version: '0.4.0'
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
amazon_ads:
+schema: amazon_ads
+materialized: table
intermediate:
+materialized: view
vars:
amazon_ads:
ad_group_history: "{{ ref('stg_amazon_ads__ad_group_history') }}"
ad_group_level_report: "{{ ref('stg_amazon_ads__ad_group_level_report') }}"
advertised_product_report: "{{ ref('stg_amazon_ads__advertised_product_report') }}"
campaign_history: "{{ ref('stg_amazon_ads__campaign_history') }}"
campaign_level_report: "{{ ref('stg_amazon_ads__campaign_level_report') }}"
portfolio_history: "{{ ref('stg_amazon_ads__portfolio_history') }}"
product_ad_history: "{{ ref('stg_amazon_ads__product_ad_history') }}"
profile: "{{ ref('stg_amazon_ads__profile') }}"
keyword_history: "{{ ref('stg_amazon_ads__keyword_history') }}"
targeting_keyword_report: "{{ ref('stg_amazon_ads__targeting_keyword_report') }}"
search_term_ad_keyword_report: "{{ ref('stg_amazon_ads__search_term_ad_keyword_report') }}"