We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
The AWS CDK generates the following block all egress rule for SecurityGroups:
SecurityGroup
... "SecurityGroupEgress": [ { "CidrIp": "255.255.255.255/32", "Description": "Disallow all traffic", "FromPort": 252, "IpProtocol": "tcp", "ToPort": 86 } ] ...
The rational for this rule can be found here: https://github.com/aws/aws-cdk/blob/9975ec8ba98fcef7156148d9af79adfdb171514a/packages/%40aws-cdk/aws-ec2/lib/security-group.ts#L621
Though, the generated egress rule fails the W29 (= Security Groups found egress with port range instead of just a single port).
W29
I would suggest to whitelabel this rule for W29.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
The AWS CDK generates the following block all egress rule for
SecurityGroup
s:The rational for this rule can be found here:
https://github.com/aws/aws-cdk/blob/9975ec8ba98fcef7156148d9af79adfdb171514a/packages/%40aws-cdk/aws-ec2/lib/security-group.ts#L621
Though, the generated egress rule fails the
W29
(= Security Groups found egress with port range instead of just a single port).I would suggest to whitelabel this rule for
W29
.The text was updated successfully, but these errors were encountered: