Merge pull request #2415 from hodduc/add-udp-ingress

Add SecurityGroupIngress on AWS CF template to allow UDP packets.
pull/6/head
Brendan Burns 2014-11-17 09:47:38 -08:00
commit 6422b87a35
1 changed files with 13 additions and 1 deletions

View File

@ -91,7 +91,19 @@
"Fn::GetAtt" : [ "KubernetesSecurityGroup", "GroupId" ] "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": { "KubernetesMasterInstance": {
"Type": "AWS::EC2::Instance", "Type": "AWS::EC2::Instance",
"Properties": { "Properties": {