-
Notifications
You must be signed in to change notification settings - Fork 43
/
ecs.tf
244 lines (224 loc) · 7.73 KB
/
ecs.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
resource "aws_cloudwatch_log_group" "airflow" {
name = "${var.resource_prefix}-airflow-${var.resource_suffix}"
retention_in_days = var.airflow_log_retention
tags = local.common_tags
}
resource "aws_ecs_cluster" "airflow" {
name = "${var.resource_prefix}-airflow-${var.resource_suffix}"
capacity_providers = ["FARGATE_SPOT", "FARGATE"]
default_capacity_provider_strategy {
capacity_provider = "FARGATE_SPOT"
}
tags = local.common_tags
}
resource "aws_ecs_task_definition" "airflow" {
family = "${var.resource_prefix}-airflow-${var.resource_suffix}"
requires_compatibilities = ["FARGATE"]
cpu = var.ecs_cpu
memory = var.ecs_memory
network_mode = "awsvpc"
task_role_arn = aws_iam_role.task.arn
execution_role_arn = aws_iam_role.execution.arn
volume {
name = local.airflow_volume_name
}
container_definitions = <<TASK_DEFINITION
[
{
"image": "mikesir87/aws-cli",
"name": "${local.airflow_sidecar_container_name}",
"command": [
"/bin/bash -c \"aws s3 cp s3://${local.s3_bucket_name}/${local.s3_key} ${var.airflow_container_home} --recursive && chmod +x ${var.airflow_container_home}/${aws_s3_bucket_object.airflow_scheduler_entrypoint.key} && chmod +x ${var.airflow_container_home}/${aws_s3_bucket_object.airflow_webserver_entrypoint.key} && chmod -R 777 ${var.airflow_container_home}\""
],
"entryPoint": [
"sh",
"-c"
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "${aws_cloudwatch_log_group.airflow.name}",
"awslogs-region": "${local.airflow_log_region}",
"awslogs-stream-prefix": "airflow"
}
},
"essential": false,
"mountPoints": [
{
"sourceVolume": "${local.airflow_volume_name}",
"containerPath": "${var.airflow_container_home}"
}
]
},
{
"image": "${var.airflow_image_name}:${var.airflow_image_tag}",
"name": "${local.airflow_init_container_name}",
"dependsOn": [
{
"containerName": "${local.airflow_sidecar_container_name}",
"condition": "SUCCESS"
}
],
"command": [
"/bin/bash -c \"${var.airflow_container_home}/${aws_s3_bucket_object.airflow_init_entrypoint.key}\""
],
"entryPoint": [
"sh",
"-c"
],
"environment": [
${join(",\n", formatlist("{\"name\":\"%s\",\"value\":\"%s\"}", keys(local.airflow_variables), values(local.airflow_variables)))}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "${aws_cloudwatch_log_group.airflow.name}",
"awslogs-region": "${local.airflow_log_region}",
"awslogs-stream-prefix": "airflow"
}
},
"essential": false,
"mountPoints": [
{
"sourceVolume": "${local.airflow_volume_name}",
"containerPath": "${var.airflow_container_home}"
}
]
},
{
"image": "${var.airflow_image_name}:${var.airflow_image_tag}",
"name": "${local.airflow_scheduler_container_name}",
"dependsOn": [
{
"containerName": "${local.airflow_sidecar_container_name}",
"condition": "SUCCESS"
},
{
"containerName": "${local.airflow_init_container_name}",
"condition": "SUCCESS"
}
],
"command": [
"/bin/bash -c \"${var.airflow_container_home}/${aws_s3_bucket_object.airflow_scheduler_entrypoint.key}\""
],
"entryPoint": [
"sh",
"-c"
],
"environment": [
${join(",\n", formatlist("{\"name\":\"%s\",\"value\":\"%s\"}", keys(local.airflow_variables), values(local.airflow_variables)))}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "${aws_cloudwatch_log_group.airflow.name}",
"awslogs-region": "${local.airflow_log_region}",
"awslogs-stream-prefix": "airflow"
}
},
"essential": true,
"mountPoints": [
{
"sourceVolume": "${local.airflow_volume_name}",
"containerPath": "${var.airflow_container_home}"
}
]
},
{
"image": "${var.airflow_image_name}:${var.airflow_image_tag}",
"name": "${local.airflow_webserver_container_name}",
"dependsOn": [
{
"containerName": "${local.airflow_sidecar_container_name}",
"condition": "SUCCESS"
},
{
"containerName": "${local.airflow_init_container_name}",
"condition": "SUCCESS"
}
],
"command": [
"/bin/bash -c \"${var.airflow_container_home}/${aws_s3_bucket_object.airflow_webserver_entrypoint.key}\""
],
"entryPoint": [
"sh",
"-c"
],
"environment": [
${join(",\n", formatlist("{\"name\":\"%s\",\"value\":\"%s\"}", keys(local.airflow_variables), values(local.airflow_variables)))}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "${aws_cloudwatch_log_group.airflow.name}",
"awslogs-region": "${local.airflow_log_region}",
"awslogs-stream-prefix": "airflow"
}
},
"healthCheck": {
"command": [ "CMD-SHELL", "curl -f http://localhost:8080/health || exit 1" ],
"startPeriod": 120
},
"essential": true,
"mountPoints": [
{
"sourceVolume": "${local.airflow_volume_name}",
"containerPath": "${var.airflow_container_home}"
}
],
"portMappings": [
{
"containerPort": 8080,
"hostPort": 8080
}
]
}
]
TASK_DEFINITION
tags = local.common_tags
}
// Without depends_on I get this error:
// Error:
// InvalidParameterException: The target group with targetGroupArn
// arn:aws:elasticloadbalancing:eu-west-1:428226611932:targetgroup/airflow/77a259290ea30e76
// does not have an associated load balancer. "airflow"
resource "aws_ecs_service" "airflow" {
depends_on = [aws_lb.airflow, aws_db_instance.airflow]
name = "${var.resource_prefix}-airflow-${var.resource_suffix}"
cluster = aws_ecs_cluster.airflow.id
task_definition = aws_ecs_task_definition.airflow.id
desired_count = 1
health_check_grace_period_seconds = 120
network_configuration {
subnets = local.rds_ecs_subnet_ids
security_groups = [aws_security_group.airflow.id]
assign_public_ip = length(var.private_subnet_ids) == 0 ? true : false
}
capacity_provider_strategy {
capacity_provider = "FARGATE_SPOT"
weight = 100
}
load_balancer {
container_name = local.airflow_webserver_container_name
container_port = 8080
target_group_arn = aws_lb_target_group.airflow.arn
}
}
resource "aws_lb_target_group" "airflow" {
name = "${var.resource_prefix}-airflow-${var.resource_suffix}"
vpc_id = var.vpc_id
protocol = "HTTP"
port = 8080
target_type = "ip"
health_check {
port = 8080
protocol = "HTTP"
interval = 30
unhealthy_threshold = 5
matcher = "200-399"
}
lifecycle {
create_before_destroy = true
}
tags = local.common_tags
}