Newer
Older
name = format("%s-sg-Internet-%s", var.prefix, random_id.id.hex)
description = "Internet facing rules"
vpc_id = module.vpc.vpc_id
ingress {
description = "Home"
from_port = 0
to_port = 0
protocol = -1
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
}
ingress {
description = "TCP 443"
from_port = 443
to_port = 443
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "UDP 443"
from_port = 443
to_port = 443
protocol = "udp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "DNS"
from_port = 53
to_port = 53
protocol = "udp"
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 = format("%s-sg-Internet-%s", var.prefix, random_id.id.hex)
}
}
name = format("%s-sg-main-%s", var.prefix, random_id.id.hex)
description = "main rules"
vpc_id = module.vpc.vpc_id
ingress {
description = "Home"
from_port = 0
to_port = 0
protocol = -1
cidr_blocks = ["69.251.248.77/32"]
}
ingress {
description = "VPC"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["10.0.0.0/8"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
tags = {
Name = format("%s-sg-main-%s", var.prefix, random_id.id.hex)
}
}