-
Notifications
You must be signed in to change notification settings - Fork 15
/
dbt_project.yml
32 lines (31 loc) · 1.12 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
29
30
31
32
name: 'jira'
version: '0.19.0'
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
vars:
jira:
issue: "{{ ref('stg_jira__issue') }}"
project: "{{ ref('stg_jira__project') }}"
user: "{{ ref('stg_jira__user') }}"
issue_type: "{{ ref('stg_jira__issue_type') }}"
status: "{{ ref('stg_jira__status') }}"
status_category: "{{ ref('stg_jira__status_category') }}"
resolution: "{{ ref('stg_jira__resolution') }}"
priority: "{{ ref('stg_jira__priority') }}"
issue_multiselect_history: "{{ ref('stg_jira__issue_multiselect_history') }}"
issue_field_history: "{{ ref('stg_jira__issue_field_history') }}"
comment: "{{ ref('stg_jira__comment') }}"
issue_link: "{{ ref('stg_jira__issue_link') }}"
component: "{{ ref('stg_jira__component') }}"
field: "{{ ref('stg_jira__field') }}"
field_option: "{{ ref('stg_jira__field_option') }}"
sprint: "{{ ref('stg_jira__sprint') }}"
version: "{{ ref('stg_jira__version') }}"
jira_issue_history_buffer: 1
models:
jira:
+materialized: table
+schema: jira
intermediate:
+materialized: ephemeral
+schema: int_jira