Added engress for AWS deployment for Genymotion
This commit is contained in:
parent
2ffb3a0c3d
commit
2e379769e9
|
@ -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" {
|
||||||
|
|
Loading…
Reference in a new issue