Skip to content

Commit 8965c0f

Browse files
author
Matthew Fisher
committed
fix(contrib/ec2): add UDP perms to the logger
1 parent 6575e4f commit 8965c0f

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

contrib/ec2/deis.template

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,22 @@
101101
}
102102
}
103103
},
104-
"Ingress514": {
104+
"Ingress514TCP": {
105105
"Type": "AWS::EC2::SecurityGroupIngress",
106106
"Properties": {
107107
"GroupName": {"Ref": "DeisSecurityGroup"}, "IpProtocol": "tcp", "FromPort": "514", "ToPort": "514", "SourceSecurityGroupId": {
108108
"Fn::GetAtt" : [ "DeisSecurityGroup", "GroupId" ]
109109
}
110110
}
111111
},
112+
"Ingress514UDP": {
113+
"Type": "AWS::EC2::SecurityGroupIngress",
114+
"Properties": {
115+
"GroupName": {"Ref": "DeisSecurityGroup"}, "IpProtocol": "udp", "FromPort": "514", "ToPort": "514", "SourceSecurityGroupId": {
116+
"Fn::GetAtt" : [ "DeisSecurityGroup", "GroupId" ]
117+
}
118+
}
119+
},
112120
"Ingress5000": {
113121
"Type": "AWS::EC2::SecurityGroupIngress",
114122
"Properties": {

0 commit comments

Comments
 (0)