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": {