forked from AlexsLemonade/refinebio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
security.tf
422 lines (370 loc) · 12.6 KB
/
security.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
# The configuration in this file specifies AWS security groups and
# associated rules.
# This is the SSH key that can be used to ssh onto instances for
# debugging. Long term we may want to remove this entirely.
resource "aws_key_pair" "data_refinery" {
key_name = "data-refinery-key-${var.user}-${var.stage}"
public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDG1WFcvLLyLK7jZfhYnNBfbVwm259du2ig4tYcicA1d8d8I43LcWg2WYpd7EfNFH8LnJMDg632NcnQ0qzrpUG4zLGTcYufXm1Fm97J285iabzlUxfgSpbk5Ee1ioNCmqtPxEgy5lrt2xw0p3Rnbn0NvSKzwGU82/k/NCbxeKbaRpHLjz9TTcAdcZLugV7Syr8W+zWBqlCIMyC4ce4t8s/ecGbyacmRPdPqC9jUBC0guLHeQmlinINJIr+wMihxJ0B5Zcyokf4wXlQBPPcB89oO9L81nlApY6aK5JJrhkSN8M5+YOkdk6Xi4SZuJD5SLWbilKGPiCNiLPAnPw7m7Ual"
}
##
# Workers
##
# This is a security group for Data Refinery Workers, which currently
# includes the Nomad Server nodes as well.
resource "aws_security_group" "data_refinery_worker" {
name = "data-refinery-worker-${var.user}-${var.stage}"
description = "data-refinery-worker-${var.user}-${var.stage}"
vpc_id = "${aws_vpc.data_refinery_vpc.id}"
tags {
Name = "data-refinery-worker-${var.user}-${var.stage}"
}
}
# Allow HTTP connections from this security group to itself.
resource "aws_security_group_rule" "data_refinery_worker_custom" {
type = "ingress"
from_port = 8000
to_port = 8000
protocol = "tcp"
self = true
security_group_id = "${aws_security_group.data_refinery_worker.id}"
}
# Allow the Nomad HTTP API to be accessible by this security group. See:
# https://www.nomadproject.io/guides/cluster/requirements.html#ports-used
resource "aws_security_group_rule" "data_refinery_worker_nomad" {
type = "ingress"
from_port = 4646
to_port = 4646
protocol = "tcp"
self = true
security_group_id = "${aws_security_group.data_refinery_worker.id}"
}
# Allow the Nomad HTTP API to be accessible by the Foreman security group. See:
# https://www.nomadproject.io/guides/cluster/requirements.html#ports-used
resource "aws_security_group_rule" "data_refinery_nomad_from_foreman" {
type = "ingress"
from_port = 4646
to_port = 4646
protocol = "tcp"
security_group_id = "${aws_security_group.data_refinery_worker.id}"
source_security_group_id = "${aws_security_group.data_refinery_foreman.id}"
}
# Allow the Nomad HTTP API to be accessible by the API security group. See:
# https://www.nomadproject.io/guides/cluster/requirements.html#ports-used
resource "aws_security_group_rule" "data_refinery_api_nomad" {
type = "ingress"
from_port = 4646
to_port = 4646
protocol = "tcp"
security_group_id = "${aws_security_group.data_refinery_worker.id}"
source_security_group_id = "${aws_security_group.data_refinery_api.id}"
}
# Allow Nomad RPC calls to go through to each other. See:
# https://www.nomadproject.io/guides/cluster/requirements.html#ports-used
resource "aws_security_group_rule" "data_refinery_worker_nomad_rpc" {
type = "ingress"
from_port = 4647
to_port = 4647
protocol = "tcp"
self = true
security_group_id = "${aws_security_group.data_refinery_worker.id}"
}
# Allow Nomad Servers to gossip with each other over TCP. See:
# https://www.nomadproject.io/guides/cluster/requirements.html#ports-used
resource "aws_security_group_rule" "data_refinery_worker_nomad_serf_tcp" {
type = "ingress"
from_port = 4648
to_port = 4648
protocol = "tcp"
self = true
security_group_id = "${aws_security_group.data_refinery_worker.id}"
}
# Allow Nomad Servers to gossip with each other over UDP. See:
# https://www.nomadproject.io/guides/cluster/requirements.html#ports-used
resource "aws_security_group_rule" "data_refinery_worker_nomad_serf_udp" {
type = "ingress"
from_port = 4648
to_port = 4648
protocol = "udp"
self = true
security_group_id = "${aws_security_group.data_refinery_worker.id}"
}
# Allow statsd updates from clients to lead server. See:
resource "aws_security_group_rule" "data_refinery_statsd" {
type = "ingress"
from_port = 8125
to_port = 8125
protocol = "udp"
self = true
security_group_id = "${aws_security_group.data_refinery_worker.id}"
}
# Allow SSH connections to Nomad instances. This is pretty much the
# only way to debug issues until we get the Nomad UI up and running.
# XXX: THIS DEFINITELY NEEDS TO BE REMOVED LONG TERM!!!!!!!!!!
resource "aws_security_group_rule" "data_refinery_worker_ssh" {
type = "ingress"
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = "${aws_security_group.data_refinery_worker.id}"
}
# Allow outbound requests from Nomad so they can actually do useful
# things. Long term we will probably only want to allow these to come
# from the Nomad Client instances, but we do not yet have separate
# security groups for servers and clients.
resource "aws_security_group_rule" "data_refinery_worker_outbound" {
type = "egress"
from_port = 0
to_port = 0
protocol = "all"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
security_group_id = "${aws_security_group.data_refinery_worker.id}"
}
##
# Database
##
resource "aws_security_group" "data_refinery_db" {
name = "data-refinery_db-${var.user}-${var.stage}"
description = "data_refinery_db-${var.user}-${var.stage}"
vpc_id = "${aws_vpc.data_refinery_vpc.id}"
tags {
Name = "data-refinery-db-${var.user}-${var.stage}"
}
}
resource "aws_security_group_rule" "data_refinery_db_workers_tcp" {
type = "ingress"
from_port = 0
to_port = 65535
protocol = "tcp"
source_security_group_id = "${aws_security_group.data_refinery_worker.id}"
security_group_id = "${aws_security_group.data_refinery_db.id}"
}
resource "aws_security_group_rule" "data_refinery_db_foreman_tcp" {
type = "ingress"
from_port = 0
to_port = 65535
protocol = "tcp"
source_security_group_id = "${aws_security_group.data_refinery_foreman.id}"
security_group_id = "${aws_security_group.data_refinery_db.id}"
}
resource "aws_security_group_rule" "data_refinery_db_api_tcp" {
type = "ingress"
from_port = 0
to_port = 65535
protocol = "tcp"
source_security_group_id = "${aws_security_group.data_refinery_api.id}"
security_group_id = "${aws_security_group.data_refinery_db.id}"
}
resource "aws_security_group_rule" "data_refinery_db_pg_tcp" {
type = "ingress"
from_port = 0
to_port = 65535
protocol = "tcp"
source_security_group_id = "${aws_security_group.data_refinery_pg.id}"
security_group_id = "${aws_security_group.data_refinery_db.id}"
}
resource "aws_security_group_rule" "data_refinery_db_workers_icmp" {
type = "ingress"
from_port = -1
to_port = -1
protocol = "icmp"
source_security_group_id = "${aws_security_group.data_refinery_worker.id}"
security_group_id = "${aws_security_group.data_refinery_db.id}"
}
resource "aws_security_group_rule" "data_refinery_db_api_icmp" {
type = "ingress"
from_port = -1
to_port = -1
protocol = "icmp"
source_security_group_id = "${aws_security_group.data_refinery_api.id}"
security_group_id = "${aws_security_group.data_refinery_db.id}"
}
resource "aws_security_group_rule" "data_refinery_db_outbound" {
type = "egress"
from_port = 0
to_port = 0
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = "${aws_security_group.data_refinery_db.id}"
}
##
# PGBouncer
##
resource "aws_security_group" "data_refinery_pg" {
name = "data-refinery-pg-${var.user}-${var.stage}"
description = "data_refinery_pg-${var.user}-${var.stage}"
vpc_id = "${aws_vpc.data_refinery_vpc.id}"
tags {
Name = "data-refinery-pg-${var.user}-${var.stage}"
}
}
resource "aws_security_group_rule" "data_refinery_pg_ssh" {
type = "ingress"
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = "${aws_security_group.data_refinery_pg.id}"
}
resource "aws_security_group_rule" "data_refinery_pg_workers_tcp" {
type = "ingress"
from_port = 0
to_port = 65535
protocol = "tcp"
source_security_group_id = "${aws_security_group.data_refinery_worker.id}"
security_group_id = "${aws_security_group.data_refinery_pg.id}"
}
resource "aws_security_group_rule" "data_refinery_pg_foreman_tcp" {
type = "ingress"
from_port = 0
to_port = 65535
protocol = "tcp"
source_security_group_id = "${aws_security_group.data_refinery_foreman.id}"
security_group_id = "${aws_security_group.data_refinery_pg.id}"
}
resource "aws_security_group_rule" "data_refinery_pg_api_tcp" {
type = "ingress"
from_port = 0
to_port = 65535
protocol = "tcp"
source_security_group_id = "${aws_security_group.data_refinery_api.id}"
security_group_id = "${aws_security_group.data_refinery_pg.id}"
}
resource "aws_security_group_rule" "data_refinery_pg_workers_icmp" {
type = "ingress"
from_port = -1
to_port = -1
protocol = "icmp"
source_security_group_id = "${aws_security_group.data_refinery_worker.id}"
security_group_id = "${aws_security_group.data_refinery_pg.id}"
}
resource "aws_security_group_rule" "data_refinery_pg_api_icmp" {
type = "ingress"
from_port = -1
to_port = -1
protocol = "icmp"
source_security_group_id = "${aws_security_group.data_refinery_api.id}"
security_group_id = "${aws_security_group.data_refinery_pg.id}"
}
resource "aws_security_group_rule" "data_refinery_pg_foreman_icmp" {
type = "ingress"
from_port = -1
to_port = -1
protocol = "icmp"
source_security_group_id = "${aws_security_group.data_refinery_foreman.id}"
security_group_id = "${aws_security_group.data_refinery_pg.id}"
}
resource "aws_security_group_rule" "data_refinery_pg_outbound" {
type = "egress"
from_port = 0
to_port = 65535
protocol = "all"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
security_group_id = "${aws_security_group.data_refinery_pg.id}"
}
##
# ElasticSearch
##
resource "aws_security_group" "data_refinery_es" {
name = "data-refinery-es-${var.user}-${var.stage}"
description = "data_refinery_es-${var.user}-${var.stage}"
vpc_id = "${aws_vpc.data_refinery_vpc.id}"
tags {
Name = "data-refinery-es-${var.user}-${var.stage}"
}
# Wide open, but inside inside the VPC
ingress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [ "0.0.0.0/0" ]
}
}
##
# API
##
resource "aws_security_group" "data_refinery_api" {
name = "data-refinery-api-${var.user}-${var.stage}"
description = "data-refinery-api-${var.user}-${var.stage}"
vpc_id = "${aws_vpc.data_refinery_vpc.id}"
tags {
Name = "data-refinery-api-${var.user}-${var.stage}"
}
}
# XXX: THIS DEFINITELY NEEDS TO BE REMOVED LONG TERM!!!!!!!!!!
resource "aws_security_group_rule" "data_refinery_api_ssh" {
type = "ingress"
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = "${aws_security_group.data_refinery_api.id}"
}
resource "aws_security_group_rule" "data_refinery_api_http" {
type = "ingress"
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = "${aws_security_group.data_refinery_api.id}"
}
resource "aws_security_group_rule" "data_refinery_api_https" {
type = "ingress"
from_port = 443
to_port = 443
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = "${aws_security_group.data_refinery_api.id}"
}
resource "aws_security_group_rule" "data_refinery_api_outbound" {
type = "egress"
from_port = 0
to_port = 0
protocol = "all"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
security_group_id = "${aws_security_group.data_refinery_api.id}"
}
##
# Foreman
##
resource "aws_security_group" "data_refinery_foreman" {
name = "data-refinery-foreman-${var.user}-${var.stage}"
description = "data-refinery-foreman-${var.user}-${var.stage}"
vpc_id = "${aws_vpc.data_refinery_vpc.id}"
tags {
Name = "data-refinery-foreman-${var.user}-${var.stage}"
}
}
# Allow the Nomad HTTP API to be accessible by this security group. See:
# https://www.nomadproject.io/guides/cluster/requirements.html#ports-used
resource "aws_security_group_rule" "data_refinery_worker_foreman" {
type = "ingress"
from_port = 4646
to_port = 4646
protocol = "tcp"
self = true
security_group_id = "${aws_security_group.data_refinery_foreman.id}"
}
# XXX: THIS DEFINITELY NEEDS TO BE REMOVED LONG TERM!!!!!!!!!!
resource "aws_security_group_rule" "data_refinery_foreman_ssh" {
type = "ingress"
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = "${aws_security_group.data_refinery_foreman.id}"
}
# Necessary to retrieve
# https://s3.amazonaws.com/aws-cloudwatch/downloads/latest/awslogs-agent-setup.py
resource "aws_security_group_rule" "data_refinery_foreman_outbound" {
type = "egress"
from_port = 0
to_port = 0
protocol = "all"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
security_group_id = "${aws_security_group.data_refinery_foreman.id}"
}