From a21b60fe40c2cdc1c41bb95d7f13146941c6801d Mon Sep 17 00:00:00 2001 From: Edward Viaene Date: Wed, 12 Oct 2016 16:17:09 +0000 Subject: [PATCH] protocol tcp instead of -1 --- demo-8/securitygroup.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo-8/securitygroup.tf b/demo-8/securitygroup.tf index a9af11f..05c0e12 100644 --- a/demo-8/securitygroup.tf +++ b/demo-8/securitygroup.tf @@ -12,7 +12,7 @@ resource "aws_security_group" "allow-ssh" { ingress { from_port = 22 to_port = 22 - protocol = "-1" + protocol = "tcp" cidr_blocks = ["0.0.0.0/0"] } tags {