Add udp access to security group

This commit is contained in:
Prateep Bandharangshi 2019-06-25 16:42:54 +01:00
parent 4d8149846b
commit a5236d518f

View file

@ -12,6 +12,12 @@ resource "aws_security_group" "tpot" {
protocol = "tcp" protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"] cidr_blocks = ["0.0.0.0/0"]
} }
ingress {
from_port = 0
to_port = 64000
protocol = "udp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress { ingress {
from_port = 64294 from_port = 64294
to_port = 64294 to_port = 64294