open all egress traffic

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-01-28 20:06:41 +01:00
parent 18c6961ee9
commit 0306223dfe
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 6 additions and 5 deletions

View File

@ -70,12 +70,13 @@ resource "aws_security_group" "main" {
self = true
protocol = "-1"
}
/* Allowing outgoing is also necessary */
/* Allowing ALL outgoing */
egress {
from_port = 0
to_port = 0
self = true
protocol = "-1"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
/* TCP */