Added engress for AWS deployment for Genymotion

This commit is contained in:
butomo1989 2018-11-05 14:49:59 +01:00
parent 2ffb3a0c3d
commit 2e379769e9

View file

@ -110,6 +110,12 @@ resource "aws_security_group" "geny_sg_$index" {
protocol = "udp" protocol = "udp"
cidr_blocks = ["0.0.0.0/0"] cidr_blocks = ["0.0.0.0/0"]
} }
egress {
from_port = 0
to_port = 65535
protocol = "udp"
cidr_blocks = ["0.0.0.0/0"]
}
} }
data "aws_ami" "geny_aws_$index" { data "aws_ami" "geny_aws_$index" {