You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I came across a small problem similar to the issue described in #173. Security group rule descriptions have some constraints on characters/length allowed (docs) and it seems like these are not being checked by cfn-lint.
The following snippet will be accepted by cfn-lint but cause an issue during deployment:
Which would result in this: Invalid rule description. Valid descriptions are strings less than 256 characters from the following set: a-zA-Z0-9. _-:/()#,@[]+=&;{}!$*
Unsure if this also applies when using Ingress rule resource AWS::EC2::SecurityGroupIngress as there is no similar constraint in the docs.
Thanks!
The text was updated successfully, but these errors were encountered:
cfn-lint version: cfn-lint 0.29.5
I came across a small problem similar to the issue described in #173. Security group rule descriptions have some constraints on characters/length allowed (docs) and it seems like these are not being checked by cfn-lint.
The following snippet will be accepted by cfn-lint but cause an issue during deployment:
Which would result in this:
Invalid rule description. Valid descriptions are strings less than 256 characters from the following set: a-zA-Z0-9. _-:/()#,@[]+=&;{}!$*
Unsure if this also applies when using Ingress rule resource
AWS::EC2::SecurityGroupIngress
as there is no similar constraint in the docs.Thanks!
The text was updated successfully, but these errors were encountered: