-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2-securitygroup.tf
68 lines (59 loc) · 1.43 KB
/
2-securitygroup.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
# security group for vpc ec2 instances to allow ssh, ping and http traffic.
resource "aws_security_group" "demovpc-ec2-sg" {
name = "demovpc-ec2-sg"
vpc_id = aws_vpc.demovpc.id
# Restrict inboud SSH traffic by IP address.
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = [var.ALLOW_CIDR]
}
# Allow ICMP echo requests.
ingress {
from_port = 8
to_port = 0
protocol = "icmp"
cidr_blocks = [var.ALLOW_CIDR]
}
# Restrict inbound HTTP traffic only from the load balancer.
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
security_groups = [aws_security_group.demovpc-alb-sg.id]
}
# Allow outbound internet access.
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
tags = {
Name = "demovpc-ec2-sg"
}
depends_on = [aws_security_group.demovpc-alb-sg]
}
# application load balancer security group.
resource "aws_security_group" "demovpc-alb-sg" {
name = "demovpc-alb-sg"
vpc_id = aws_vpc.demovpc.id
# allow only http traffic
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = [var.ALLOW_CIDR]
}
# Allow all outbound traffic.
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
tags = {
Name = "demovpc-alb-sg"
}
}