Skip to content

Commit

Permalink
Merge pull request kubernetes#2415 from hodduc/add-udp-ingress
Browse files Browse the repository at this point in the history
Add SecurityGroupIngress on AWS CF template to allow UDP packets.
  • Loading branch information
brendandburns committed Nov 17, 2014
2 parents 5d8e62c + e3ddd59 commit 6422b87
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/getting-started-guides/aws/cloudformation-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 6422b87

Please sign in to comment.