diff --git a/terraform/aws/consul.tf b/terraform/aws/consul.tf index f5e6fc91c..afb592637 100644 --- a/terraform/aws/consul.tf +++ b/terraform/aws/consul.tf @@ -62,4 +62,12 @@ resource "aws_security_group" "consul" { protocol = "tcp" cidr_blocks = ["0.0.0.0/0"] } + + // This is for outbound internet access + egress { + from_port = 0 + to_port = 0 + protocol = "-1" + cidr_block = "0.0.0.0/0" + } }