Understand Rule Levels in cfn-lint
mainRules in cfn-lint return feedback categorized into three levels. Each level is identified by a specific prefix in its ID:
- Errors (
E): These indicate issues that may result in a hard failure for the template validation. - Warnings (
W): These alert you when a template deviates from best practices but is still expected to function (e.g., missingNoEcho: trueon an RDS master password parameter). - Informational (
I): These alert you to best practice deviations in a non-blocking way. Informational results are disabled by default.