From e3ddd59344dbc905f220cba3e61969ab51a0f3ac Mon Sep 17 00:00:00 2001 From: Joonsung Lee Date: Mon, 17 Nov 2014 22:11:49 +0900 Subject: [PATCH] Add SecurityGroupIngress on AWS CF template to allow UDP packets. --- .../aws/cloudformation-template.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/getting-started-guides/aws/cloudformation-template.json b/docs/getting-started-guides/aws/cloudformation-template.json index 5041054107f..c85f36ec934 100644 --- a/docs/getting-started-guides/aws/cloudformation-template.json +++ b/docs/getting-started-guides/aws/cloudformation-template.json @@ -91,7 +91,19 @@ "Fn::GetAtt" : [ "KubernetesSecurityGroup", "GroupId" ] } } - }, + }, + "KubernetesIngressUDP": { + "Type": "AWS::EC2::SecurityGroupIngress", + "Properties": { + "GroupName": {"Ref": "KubernetesSecurityGroup"}, + "IpProtocol": "udp", + "FromPort": "1", + "ToPort": "65535", + "SourceSecurityGroupId": { + "Fn::GetAtt" : [ "KubernetesSecurityGroup", "GroupId" ] + } + } + }, "KubernetesMasterInstance": { "Type": "AWS::EC2::Instance", "Properties": {