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
Is this feature request related to a new rule or cfn-lint capabilities?
rules
Describe the feature you'd like to request
I want the invalid redis version (i.e., the patch version is specified) to be added as a rule:
RedisCluster:
Type: AWS::ElastiCache::CacheCluster# Deletion is the default policy.DeletionPolicy: DeleteUpdateReplacePolicy: DeleteProperties:
Engine: redisCacheNodeType: cache.t4g.micro# RELATED TO ISSUE: Do not include patch versions in the EngineVersion (because it's invalid).EngineVersion: 7.1# 7.1.0 is invalid.NumCacheNodes: 1ClusterName: "cluster-name"VpcSecurityGroupIds:
- !RefRedisSecurityGroupCacheSubnetGroupName: !Ref RedisSubnetGroup
Describe the solution you'd like
The code snippet above should induce a linting error.
Additional context
Just wasted 10 minutes on a deployment because of this.
Is this something that you'd be interested in working on?
👋 I may be able to implement this feature request
Would this feature include a breaking change?
⚠️ This feature might incur a breaking change
The text was updated successfully, but these errors were encountered:
Is this feature request related to a new rule or cfn-lint capabilities?
rules
Describe the feature you'd like to request
I want the invalid redis version (i.e., the patch version is specified) to be added as a rule:
Describe the solution you'd like
The code snippet above should induce a linting error.
Additional context
Just wasted 10 minutes on a deployment because of this.
Is this something that you'd be interested in working on?
Would this feature include a breaking change?
The text was updated successfully, but these errors were encountered: