-
Notifications
You must be signed in to change notification settings - Fork 0
/
sg.tf
44 lines (40 loc) · 989 Bytes
/
sg.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
resource "aws_security_group" "instance" {
name = var.name_sg
#
#ingress {
#
# from_port = var.http_port
# to_port = var.http_port
# protocol = var.protocol
# cidr_blocks = ["0.0.0.0/0"]
#}
#
#egress {
#
# from_port = 0
# to_port = 0
# protocol = "-1"
# cidr_blocks = ["0.0.0.0/0"]
#
#}
dynamic "ingress" {
iterator = port
for_each = var.ingressrules
content {
from_port = port.value
to_port = port.value
protocol = var.protocol_net
cidr_blocks = ["0.0.0.0/0"]
}
}
dynamic "egress" {
iterator = port
for_each = var.egressrules
content {
from_port = port.value
to_port = port.value
protocol = var.protocol_net
cidr_blocks = ["0.0.0.0/0"]
}
}
}