-
Notifications
You must be signed in to change notification settings - Fork 0
/
security.tf
44 lines (39 loc) · 906 Bytes
/
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
# Create Web Security Group
resource "aws_security_group" "web-sg" {
name = "docker-Web-SG"
description = "Allow ssh and http inbound traffic"
vpc_id = aws_default_vpc.default_vpc.id
ingress {
description = "ingress port "
#from_port = ingress.value
from_port = 8000
to_port = 8100
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "ingress port "
#from_port = ingress.value
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "ingress-port "
#from_port = ingress.value
from_port = 22
to_port = 22
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 = "docker-Web-SG"
}
}