From 2fbde79415c649a7b2aabe9cc20c1d4815918e8b Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Fri, 8 May 2015 13:35:24 -0500 Subject: [PATCH] terraform/aws module: typo This is what I get for thinking that the GitHub in-browser editor would be sufficient. -_- --- terraform/aws/consul.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/aws/consul.tf b/terraform/aws/consul.tf index afb592637..3ed0414c2 100644 --- a/terraform/aws/consul.tf +++ b/terraform/aws/consul.tf @@ -62,12 +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" + cidr_blocks = ["0.0.0.0/0"] } }