-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSECURITY.tf
87 lines (71 loc) · 2.02 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
######################################################################################
# SECURITY GROUPS
######################################################################################
# EC2 Security Group
resource "aws_security_group" "ec2_sg" {
name = "ec2-sg"
vpc_id = aws_vpc.demo_vpc.id
ingress {
description = "Traffic from HTTP"
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = [var.cidr_block]
}
egress {
description = "Allow traffic"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [var.cidr_block]
}
}
######################################################################################
######################################################################################
# Auto Scaling Security Group
resource "aws_security_group" "asg_sg" {
name = "asg-sg"
vpc_id = aws_vpc.demo_vpc.id
ingress {
description = "Allow traffic from only ALB"
from_port = 0
to_port = 0
protocol = "-1"
security_groups = [aws_security_group.alb_sg.id]
}
egress {
description = "Allow traffic"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [var.cidr_block]
}
}
######################################################################################
######################################################################################
# Application Load Balancer Security Group
resource "aws_security_group" "alb_sg" {
name = "alb-sg"
vpc_id = aws_vpc.demo_vpc.id
ingress {
description = "Traffic from HTTP"
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = [var.cidr_block]
}
ingress {
description = "Traffic from HTTPS"
from_port = 443
to_port = 443
protocol = "tcp"
cidr_blocks = [var.cidr_block]
}
egress {
description = "All Traffic"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [var.cidr_block]
}
}