Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

Commit 1a804fe

Browse files
authored
Merge pull request #52 from eamonnfaherty/master
fixing incorrect port settings for security group
2 parents 869db46 + 6644c02 commit 1a804fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

templates/git2s3.template

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,15 +1025,15 @@
10251025
"GroupName": "ZipDlLambdaSecurityGroup",
10261026
"SecurityGroupEgress": [ {
10271027
"CidrIp": {"Ref": "VPCCidrRange"},
1028-
"FromPort": -1,
1028+
"FromPort": 0,
10291029
"IpProtocol": 'tcp',
1030-
"ToPort": -1
1030+
"ToPort": 65535
10311031
} ],
10321032
"SecurityGroupIngress": [ {
10331033
"CidrIp": {"Ref": "VPCCidrRange"},
1034-
"FromPort": -1,
1034+
"FromPort": 0,
10351035
"IpProtocol": 'tcp',
1036-
"ToPort": -1
1036+
"ToPort": 65535
10371037
} ],
10381038
"VpcId": {"Ref": "VPCId"}
10391039
}

0 commit comments

Comments
 (0)