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
{{ message }}
This repository has been archived by the owner on Apr 16, 2022. It is now read-only.
We have a CommaDelimitedList parameter that is optional, using a condition. When unset, it is an empty string, and so there are zero commas because it is a zero length list. This works fine, but cfn-lint throws this error:
Resource: Parameters > //ParamName//
Message: Parameter //ParamName// contains a CommaDelimitedList where the number of commas appears to be equal or greater than the list of items.
Documentation: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html
The text was updated successfully, but these errors were encountered:
This should be pretty easy to fix, there is one segment of code which does this validation, a couple of extra tests and a quick edit should be all for this. Might get a chance later this week to look, but I'm happy to merge PRs if you have the time.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We have a CommaDelimitedList parameter that is optional, using a condition. When unset, it is an empty string, and so there are zero commas because it is a zero length list. This works fine, but cfn-lint throws this error:
The text was updated successfully, but these errors were encountered: