-
Notifications
You must be signed in to change notification settings - Fork 0
/
bigquery-tables.tf
197 lines (144 loc) · 5.32 KB
/
bigquery-tables.tf
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
resource "google_bigquery_table" "users_behaviors_uninstall" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_behaviors_uninstall"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_behaviors_uninstall.json")}"
}
resource "google_bigquery_table" "users_campaigns_conversion" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_campaigns_conversion"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_campaigns_conversion.json")}"
}
resource "google_bigquery_table" "users_canvas_conversion" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_canvas_conversion"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_canvas_conversion.json")}"
}
resource "google_bigquery_table" "users_canvas_entry" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_canvas_entry"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_canvas_entry.json")}"
}
resource "google_bigquery_table" "users_messages_email_bounce" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_email_bounce"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_email_bounce.json")}"
}
resource "google_bigquery_table" "users_messages_email_click" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_email_click"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_email_click.json")}"
}
resource "google_bigquery_table" "users_messages_email_delivery" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_email_delivery"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_email_delivery.json")}"
}
resource "google_bigquery_table" "users_messages_email_markasspam" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_email_markasspam"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_email_markasspam.json")}"
}
resource "google_bigquery_table" "users_messages_email_open" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_email_open"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_email_open.json")}"
}
resource "google_bigquery_table" "users_messages_email_send" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_email_send"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_email_send.json")}"
}
resource "google_bigquery_table" "users_messages_email_softbounce" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_email_softbounce"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_email_softbounce.json")}"
}
resource "google_bigquery_table" "users_messages_email_unsubscribe" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_email_unsubscribe"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_email_unsubscribe.json")}"
}
resource "google_bigquery_table" "users_messages_inappmessage_click" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_inappmessage_click"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_inappmessage_click.json")}"
}
resource "google_bigquery_table" "users_messages_inappmessage_impression" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_inappmessage_impression"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_inappmessage_impression.json")}"
}
resource "google_bigquery_table" "users_messages_pushnotification_bounce" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_pushnotification_bounce"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_pushnotification_bounce.json")}"
}
resource "google_bigquery_table" "users_messages_pushnotification_iosforeground" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_pushnotification_iosforeground"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_pushnotification_iosforeground.json")}"
}
resource "google_bigquery_table" "users_messages_pushnotification_open" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_pushnotification_open"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_pushnotification_open.json")}"
}
resource "google_bigquery_table" "users_messages_pushnotification_send" {
dataset_id = "${google_bigquery_dataset.braze_currents.dataset_id}"
table_id = "users_messages_pushnotification_send"
time_partitioning {
type = "DAY"
}
schema = "${file("schemas/users_messages_pushnotification_send.json")}"
}