Add SecurityGroupIngress on AWS CF template to allow UDP packets.
This commit is contained in:
@@ -92,6 +92,18 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"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": {
|
||||||
|
Reference in New Issue
Block a user