-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
290 lines (246 loc) · 6.82 KB
/
variables.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
variable "project" {
type = string
description = "Project ID."
}
variable "location" {
type = string
description = "Location for Storage bucket, and BigQuery dataset."
default = "EU"
validation {
condition = contains(["EU", "US"], var.location)
error_message = "Location must be one of: 'EU', 'US'"
}
}
variable "region" {
type = string
description = "Region for Dataflow job."
default = "europe-west3"
}
variable "labels" {
type = map(any)
description = "Labels for all resources."
default = {}
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Service Account for Dataflow Job
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
variable "create_service_account" {
type = bool
description = "Create service account for Dataflow job?"
default = true
}
variable "service_account_name" {
type = string
description = "Service account name for Dataflow job."
default = "service-account"
}
variable "service_account_description" {
type = string
description = "Service account description for Dataflow job."
default = ""
}
variable "create_roles" {
type = bool
description = "Create service account roles for Dataflow job?"
default = true
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Storage for Dataflow files
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
variable "create_bucket" {
type = bool
description = "Create Storage bucket for Dataflow files?"
default = true
}
variable "bucket_name" {
type = string
description = "Storage bucket name for Dataflow files."
default = "bucket"
}
variable "temp_folder_name" {
type = string
description = "Storage bucket folder name for Dataflow temporary files."
default = "temp"
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Pub/Sub input
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
variable "create_topic" {
type = bool
description = "Create Pub/Sub topic for Dataflow input?"
default = true
}
variable "topic_name" {
type = string
description = "Pub/Sub topic name for Dataflow input."
default = "topic"
}
variable "topic_schema" {
type = object({
type = string
definition = string
encoding = string
gcs_path = string
})
description = "Pub/Sub topic message schema."
default = null
}
variable "create_subscription" {
type = bool
description = "Create Pub/Sub subscription for Dataflow input?"
default = true
}
variable "subscription_name" {
type = string
description = "Pub/Sub subscription name for Dataflow input."
default = "subscription"
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// BigQuery success output
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
variable "create_dataset" {
type = bool
description = "Create BigQuery dataset for Dataflow output?"
default = true
}
variable "dataset_name" {
type = string
description = "BigQuery dataset name for Dataflow output."
default = "dataset"
}
variable "dataset_description" {
type = string
description = "BigQuery dataset description for Dataflow output."
default = ""
}
variable "create_table" {
type = bool
description = "Create BigQuery table for Dataflow output?"
default = true
}
variable "table_name" {
type = string
description = "BigQuery table name for Dataflow output."
default = "table"
}
variable "table_description" {
type = string
description = "BigQuery table description for Dataflow output."
default = ""
}
variable "table_schema" {
type = string
description = "BigQuery table JSON schema for Dataflow output."
default = null
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Storage failure output
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
variable "use_errors_bucket" {
type = bool
description = "Use Storage bucket for Dataflow errors?"
default = false
}
variable "create_errors_bucket" {
type = bool
description = "Create Storage bucket for Dataflow errors?"
default = true
}
variable "errors_bucket_name" {
type = string
description = "Storage bucket name for Dataflow errors."
default = "errors-bucket"
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// BigQuery failure output
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
variable "use_errors_dataset" {
type = bool
description = "Use BigQuery dataset for Dataflow errors?"
default = false
}
variable "create_errors_dataset" {
type = bool
description = "Create BigQuery dataset for Dataflow errors?"
default = true
}
variable "errors_dataset_name" {
type = string
description = "BigQuery dataset name for Dataflow errors."
default = "errors_dataset"
}
variable "errors_dataset_description" {
type = string
description = "BigQuery dataset description for Dataflow errors."
default = ""
}
variable "create_errors_table" {
type = bool
description = "Create BigQuery table for Dataflow errors?"
default = true
}
variable "errors_table_name" {
type = string
description = "BigQuery table name for Dataflow errors."
default = "table"
}
variable "errors_table_description" {
type = string
description = "BigQuery table description for Dataflow errors."
default = ""
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Pub/Sub failure output
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
variable "use_errors_topic" {
type = bool
description = "Use Pub/Sub topic for Dataflow errors?"
default = false
}
variable "create_errors_topic" {
type = bool
description = "Create Pub/Sub topic for Dataflow errors?"
default = true
}
variable "errors_topic_name" {
type = string
description = "Pub/Sub topic name for Dataflow errors."
default = "errors-topic"
}
variable "create_errors_subscription" {
type = bool
description = "Create Pub/Sub subscription for Dataflow errors?"
default = true
}
variable "errors_subscription_name" {
type = string
description = "Pub/Sub subscription name for Dataflow errors."
default = "errors-subscription"
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Dataflow Job(s)
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
variable "machine_type" {
type = string
description = "Dataflow worker machine type for the job."
default = null
}
variable "max_workers" {
type = string
description = "Maximum number of Dataflow workers for the job."
default = null
}
variable "job_name" {
type = string
description = "Dataflow job name."
default = "job"
}
variable "jobs" {
type = set(object({
version = string
path = string
flex = bool
parameters = map(string)
}))
description = "Dataflow job(s)."
}