-
Notifications
You must be signed in to change notification settings - Fork 40
/
main.tf
427 lines (355 loc) · 12.8 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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
# ---------------------------------------
# AIRFLOW CLUSTER RESOURCES
# ---------------------------------------
# ---------------------------------------
# LABELS
# ---------------------------------------
resource "aws_key_pair" "auth" {
key_name = coalesce(var.key_name, module.airflow_labels.id)
public_key = coalesce(var.public_key, file(var.public_key_path))
}
# -------------------------------------------
# CREATE A S3 BUCKET TO STORAGE AIRFLOW LOGS
# -------------------------------------------
resource "aws_s3_bucket" "airflow_logs" {
bucket = "${module.airflow_labels.id}-logs"
acl = "private"
force_destroy = true
tags = module.airflow_labels.tags
}
# ---------------------------------------
# CREATE A SQS TOPIC
# ---------------------------------------
resource "aws_sqs_queue" "airflow_queue" {
name = "${module.airflow_labels.id}-queue"
max_message_size = 262144
tags = module.airflow_labels.tags
}
# ---------------------------------------
# Policies and profile
# ---------------------------------------
module "ami_instance_profile" {
source = "git::https://github.com/traveloka/terraform-aws-iam-role//modules/instance?ref=tags/v1.0.2"
service_name = module.airflow_labels.namespace
cluster_role = module.airflow_labels.stage
environment = module.airflow_labels.stage
product_domain = module.airflow_labels.stage
role_tags = module.airflow_labels.tags
}
resource "aws_iam_role_policy_attachment" "s3_policy" {
role = module.ami_instance_profile.role_name
policy_arn = "arn:aws:iam::aws:policy/AmazonS3FullAccess"
}
resource "aws_iam_role_policy_attachment" "sqs_policy" {
role = module.ami_instance_profile.role_name
policy_arn = "arn:aws:iam::aws:policy/AmazonSQSFullAccess"
}
resource "aws_sqs_queue_policy" "sqs_permission" {
queue_url = aws_sqs_queue.airflow_queue.id
policy = <<POLICY
{
"Version": "2012-10-17",
"Id": "sqspolicy",
"Statement": [
{
"Sid": "First",
"Effect": "Allow",
"Principal": "*",
"Action": "SQS:*",
"Resource": "${aws_sqs_queue.airflow_queue.arn}"
}
]
}
POLICY
}
# ----------------------------------------------------------------------------------------
# CREATE A SECURITY GROUP TO CONTROL WHAT REQUESTS CAN GO IN AND OUT OF EACH EC2 INSTANCE
# ----------------------------------------------------------------------------------------
module "sg_airflow" {
source = "terraform-aws-modules/security-group/aws"
version = "3.2.0"
name = "${module.airflow_labels.id}-sg"
description = "Security group for ${module.airflow_labels.id} machines"
vpc_id = data.aws_vpc.default.id
ingress_cidr_blocks = var.ingress_cidr_blocks
ingress_rules = ["http-80-tcp", "https-443-tcp", "ssh-tcp"]
ingress_with_cidr_blocks = var.ingress_with_cidr_blocks
egress_rules = ["all-all"]
tags = module.airflow_labels.tags
}
#-------------------------------------------------------------------------
# EC2
#-------------------------------------------------------------------------
resource "aws_instance" "airflow_webserver" {
count = 1
instance_type = var.webserver_instance_type
ami = var.ami
key_name = aws_key_pair.auth.id
vpc_security_group_ids = [module.sg_airflow.this_security_group_id]
subnet_id = coalesce("${var.instance_subnet_id}", tolist(data.aws_subnet_ids.all.ids)[0])
iam_instance_profile = module.ami_instance_profile.instance_profile_name
associate_public_ip_address = true
volume_tags = module.airflow_labels_webserver.tags
root_block_device {
volume_type = var.root_volume_type
volume_size = var.root_volume_size
delete_on_termination = var.root_volume_delete_on_termination
}
provisioner "file" {
content = data.template_file.custom_env.rendered
destination = "/tmp/custom_env"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "file" {
content = data.template_file.custom_requirements.rendered
destination = "/tmp/requirements.txt"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "file" {
content = data.template_file.airflow_environment.rendered
destination = "/tmp/airflow_environment"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "file" {
content = data.template_file.airflow_service.rendered
destination = "/tmp/airflow.service"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "remote-exec" {
inline = [
"echo AIRFLOW_ROLE=WEBSERVER | sudo tee -a /etc/environment",
]
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
user_data = data.template_file.provisioner.rendered
tags = module.airflow_labels_webserver.tags
lifecycle {
create_before_destroy = true
}
}
resource "aws_instance" "airflow_scheduler" {
count = 1
instance_type = var.scheduler_instance_type
ami = var.ami
key_name = aws_key_pair.auth.id
vpc_security_group_ids = [module.sg_airflow.this_security_group_id]
subnet_id = coalesce("${var.instance_subnet_id}", tolist(data.aws_subnet_ids.all.ids)[0])
iam_instance_profile = module.ami_instance_profile.instance_profile_name
associate_public_ip_address = true
volume_tags = module.airflow_labels_webserver.tags
root_block_device {
volume_type = var.root_volume_type
volume_size = var.root_volume_size
delete_on_termination = var.root_volume_delete_on_termination
}
provisioner "file" {
content = data.template_file.custom_env.rendered
destination = "/tmp/custom_env"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "file" {
content = data.template_file.custom_requirements.rendered
destination = "/tmp/requirements.txt"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "file" {
content = data.template_file.airflow_environment.rendered
destination = "/tmp/airflow_environment"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "file" {
content = data.template_file.airflow_service.rendered
destination = "/tmp/airflow.service"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "remote-exec" {
inline = [
"echo AIRFLOW_ROLE=SCHEDULER | sudo tee -a /etc/environment",
]
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
user_data = data.template_file.provisioner.rendered
tags = module.airflow_labels_scheduler.tags
lifecycle {
create_before_destroy = true
}
}
resource "aws_instance" "airflow_worker" {
count = var.worker_instance_count
instance_type = var.worker_instance_type
ami = var.ami
key_name = aws_key_pair.auth.id
vpc_security_group_ids = [module.sg_airflow.this_security_group_id]
subnet_id = coalesce("${var.instance_subnet_id}", tolist(data.aws_subnet_ids.all.ids)[0])
iam_instance_profile = module.ami_instance_profile.instance_profile_name
associate_public_ip_address = true
volume_tags = module.airflow_labels_webserver.tags
root_block_device {
volume_type = var.root_volume_type
volume_size = var.root_volume_size
delete_on_termination = var.root_volume_delete_on_termination
}
provisioner "file" {
content = data.template_file.custom_env.rendered
destination = "/tmp/custom_env"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "file" {
content = data.template_file.custom_requirements.rendered
destination = "/tmp/requirements.txt"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "file" {
content = data.template_file.airflow_environment.rendered
destination = "/tmp/airflow_environment"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "file" {
content = data.template_file.airflow_service.rendered
destination = "/tmp/airflow.service"
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
provisioner "remote-exec" {
inline = [
"echo AIRFLOW_ROLE=WORKER | sudo tee -a /etc/environment",
]
connection {
host = self.public_ip
agent = false
type = "ssh"
user = "ubuntu"
private_key = coalesce(var.private_key, file(var.private_key_path))
}
}
user_data = data.template_file.provisioner.rendered
tags = module.airflow_labels_worker.tags
lifecycle {
create_before_destroy = true
}
}
#-----------
# Database
#-----------
# -------------------------------------------------------------------------
# CREATE A SECURITY GROUP TO CONTROL WHAT REQUESTS CAN GO IN AND OUT OF RDS
# -------------------------------------------------------------------------
module "sg_database" {
source = "terraform-aws-modules/security-group/aws"
version = "3.2.0"
name = "${module.airflow_labels.id}-database-sg"
description = "Security group for ${module.airflow_labels.id} database"
vpc_id = data.aws_vpc.default.id
ingress_cidr_blocks = var.ingress_cidr_blocks
number_of_computed_ingress_with_source_security_group_id = 1
computed_ingress_with_source_security_group_id = [
{
rule = "postgresql-tcp"
source_security_group_id = module.sg_airflow.this_security_group_id
description = "Allow ${module.airflow_labels.id} machines"
},
]
tags = module.airflow_labels.tags
}
resource "aws_db_instance" "airflow_database" {
identifier = "${module.airflow_labels.id}-db"
allocated_storage = var.db_allocated_storage
engine = "postgres"
engine_version = "11.5"
instance_class = var.db_instance_type
name = var.db_dbname
username = var.db_username
password = var.db_password
storage_type = "gp2"
backup_retention_period = 7
multi_az = false
publicly_accessible = false
apply_immediately = true
skip_final_snapshot = true
vpc_security_group_ids = [module.sg_database.this_security_group_id]
port = "5432"
db_subnet_group_name = var.db_subnet_group_name
}