From 0e3f1a865ea3098380a6ae617652deb848490244 Mon Sep 17 00:00:00 2001 From: Kevin Yi Date: Tue, 3 Mar 2015 10:33:54 +1100 Subject: [PATCH] protocol value for all traffic should be -1 If it is all traffic instead of all tcp traffic , protocol should be equal -1 , otherwise indicate all tcp not all traffic --- .../source/docs/providers/aws/r/security_group.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/providers/aws/r/security_group.html.markdown b/website/source/docs/providers/aws/r/security_group.html.markdown index c8f76a121..869f4bdc5 100644 --- a/website/source/docs/providers/aws/r/security_group.html.markdown +++ b/website/source/docs/providers/aws/r/security_group.html.markdown @@ -22,14 +22,14 @@ resource "aws_security_group" "allow_all" { ingress { from_port = 0 to_port = 65535 - protocol = "tcp" + protocol = "-1" cidr_blocks = ["0.0.0.0/0"] } egress { from_port = 0 to_port = 65535 - protocol = "tcp" + protocol = "-1" cidr_blocks = ["0.0.0.0/0"] } }