-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
335 lines (321 loc) · 8.3 KB
/
main.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
variable "project" {
type = "string"
}
variable "region" {
type = "string"
default = "us-central1"
}
variable "bucket" {
type = "string"
}
variable "shared_secret" {
type = "string"
}
provider "google" {
project = "${var.project}"
region = "${var.region}"
credentials = "${file("google.json")}"
}
resource "google_bigquery_dataset" "positions" {
dataset_id = "positions"
friendly_name = "Positions"
description = "Longitudinal and latitudinal positions from buses on the road"
location = "${var.region}"
access {
role = "OWNER"
special_group = "projectOwners"
}
access {
role = "WRITER"
special_group = "projectWriters"
}
access {
role = "READER"
special_group = "allAuthenticatedUsers"
}
}
resource "google_bigquery_table" "positions_raw" {
depends_on = [ "google_bigquery_dataset.positions" ]
dataset_id = "${google_bigquery_dataset.positions.dataset_id}"
table_id = "raw"
friendly_name = "${google_bigquery_dataset.positions.friendly_name} (Raw)"
description = "${google_bigquery_dataset.positions.description}"
clustering = [
"date",
"route",
"trip",
"stop"
]
time_partitioning {
type = "DAY"
field = "date"
}
schema = <<EOF
[
{
"name": "vehicle",
"description": "Unique identifier for the vehicle",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "direction",
"description": "Ordinal representing the heading of the vehicle",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "route",
"description": "Identifier for the route the vehicle is traveling along",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "trip",
"description": "Identifier for the trip, which represents a route at a given time",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "stop",
"description": "Ordinal representing the next trip stop the vehicle is approaching",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "location",
"description": "Geographic location the vehicle is currently present",
"type": "GEOGRAPHY",
"mode": "REQUIRED"
},
{
"name": "datetime",
"description": "Date and time when the position was observed from the vehicle",
"type": "DATETIME",
"mode": "REQUIRED"
},
{
"name": "date",
"description": "Service date, which may not be the same date from the timestamp",
"type": "DATE",
"mode": "REQUIRED"
}
]
EOF
}
resource "google_bigquery_dataset" "schedule" {
dataset_id = "schedule"
friendly_name = "Schedule"
description = "Static schedule data, updated every Friday"
location = "${var.region}"
access {
role = "OWNER"
special_group = "projectOwners"
}
access {
role = "WRITER"
special_group = "projectWriters"
}
access {
role = "READER"
special_group = "allAuthenticatedUsers"
}
}
resource "google_bigquery_table" "routes" {
depends_on = [ "google_bigquery_dataset.schedule" ]
dataset_id = "${google_bigquery_dataset.schedule.dataset_id}"
table_id = "routes"
friendly_name = "Routes"
description = "Routes that a provide regular bus service"
time_partitioning {
type = "DAY"
field = "date"
}
schema = <<EOF
[
{
"name": "id",
"description": "Internal unique identifier for the route",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "code",
"description": "External unique identifier for the route",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "names",
"description": "List of terminus names for the route",
"type": "STRING",
"mode": "REPEATED"
},
{
"name": "date",
"description": "Schedule date the route is effective",
"type": "DATE",
"mode": "REQUIRED"
}
]
EOF
}
resource "google_bigquery_table" "trips" {
depends_on = [ "google_bigquery_dataset.schedule" ]
dataset_id = "${google_bigquery_dataset.schedule.dataset_id}"
table_id = "trips"
friendly_name = "Trips"
description = "Bus services at a specific time of day in the week"
time_partitioning {
type = "DAY"
field = "date"
}
schema = <<EOF
[
{
"name": "id",
"description": "Internal unique identifier for the trip",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "route",
"description": "Identifier of the route providing service",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "headsign",
"description": "Human-readable name of the trip that is displayed on the vehicle",
"type": "STRING",
"mode": "REQUIRED"
},
{
"name": "direction",
"description": "Ordinal representing the heading of the trip",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "block",
"description": "Identifier that references the vehicle schedule for the day",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "path",
"description": "Identifier that references the road path of the trip",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "date",
"description": "Schedule date the trip is effective",
"type": "DATE",
"mode": "REQUIRED"
}
]
EOF
}
resource "google_bigquery_table" "stops" {
depends_on = [ "google_bigquery_dataset.schedule" ]
dataset_id = "${google_bigquery_dataset.schedule.dataset_id}"
table_id = "stops"
friendly_name = "Stops"
description = "Bus stops along particular routes"
time_partitioning {
type = "DAY"
field = "date"
}
schema = <<EOF
[
{
"name": "id",
"description": "Internal unique identifier for the stop",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "code",
"description": "External unique identifier for the stop",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "name",
"description": "Name of the stop, typically an intersection",
"type": "STRING",
"mode": "REQUIRED"
},
{
"name": "location",
"description": "Well-known text (WKT) representing the geography of the stop",
"type": "GEOGRAPHY",
"mode": "REQUIRED"
},
{
"name": "date",
"description": "Schedule date the stop is effective",
"type": "DATE",
"mode": "REQUIRED"
}
]
EOF
}
resource "google_bigquery_table" "paths" {
depends_on = [ "google_bigquery_dataset.schedule" ]
dataset_id = "${google_bigquery_dataset.schedule.dataset_id}"
table_id = "paths"
friendly_name = "Paths"
description = "Lists of coordinates representing the path of a trips"
time_partitioning {
type = "DAY"
field = "date"
}
schema = <<EOF
[
{
"name": "id",
"description": "Internal unique identifier for the path",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"name": "location",
"description": "Well-known text (WKT) representing the geography of the path",
"type": "GEOGRAPHY",
"mode": "REQUIRED"
},
{
"name": "date",
"description": "Schedule date the path is effective",
"type": "DATE",
"mode": "REQUIRED"
}
]
EOF
}
data "archive_file" "function_zip" {
type = "zip"
source_dir = "${path.root}/func"
output_path = "${path.root}/dist/function.zip"
}
resource "google_storage_bucket_object" "function_object" {
depends_on = ["data.archive_file.function_zip"]
name = "function/${data.archive_file.function_zip.output_sha}.zip"
bucket = "${var.bucket}"
source = "${data.archive_file.function_zip.output_path}"
}
resource "google_cloudfunctions_function" "function" {
depends_on = ["google_storage_bucket_object.function_object"]
name = "proxy"
description = "HTTP proxy to generate Google oauth tokens"
region = "us-central1"
available_memory_mb = 128
source_archive_bucket = "${google_storage_bucket_object.function_object.bucket}"
source_archive_object = "${google_storage_bucket_object.function_object.name}"
timeout = 60
entry_point = "proxy"
trigger_http = true
runtime = "nodejs8"
}