Fix tcp access in security group

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

View file

@ -9,7 +9,7 @@ resource "aws_security_group" "tpot" {
ingress { ingress {
from_port = 0 from_port = 0
to_port = 64000 to_port = 64000
protocol = "-1" protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"] cidr_blocks = ["0.0.0.0/0"]
} }
ingress { ingress {