-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurity_groups.tf
74 lines (64 loc) · 1.53 KB
/
security_groups.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
resource "aws_security_group" "load_balancers" {
name = "load_balancers"
description = "Allows all traffic"
vpc_id = "${aws_vpc.main.id}"
# TODO: do we need to allow ingress besides TCP 80 and 443?
ingress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
# TODO: this probably only needs egress to the ECS security group.
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_security_group" "rails_app" {
name = "rails_app"
description = "Allows all traffic"
vpc_id = "${aws_vpc.main.id}"
# TODO: remove this and replace with a bastion host for SSHing into
# individual machines.
ingress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 0
to_port = 0
protocol = "-1"
security_groups = ["${aws_security_group.load_balancers.id}"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_security_group" "rds_rails_app" {
name = "main_rds_sg"
description = "Allow all inbound traffic"
vpc_id = "${aws_vpc.main.id}"
ingress {
from_port = 0
to_port = 65535
protocol = "TCP"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
tags {
Name = "rds_rails_app"
}
}