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
Currently cfn-lint does not detect if the input artifact reference in a CodePipeline CloudFormation deploy action TemplatePath actually matches any of the provided InputArtifacts on the action.
The following example does not raise an error, even though the deploy will fail since SourceRepoArtifact and SourceArtifact do not match.
- Name: My_Deploy_ActionActionTypeId:
Category: DeployOwner: AWSProvider: CloudFormationStackSetVersion: "1"Configuration:
StackSetName: My-StackSetCapabilities: CAPABILITY_IAM,CAPABILITY_AUTO_EXPANDDescription: tktkTemplatePath: SourceRepoArtifact::src/template.yml # Does not matchPermissionModel: SELF_MANAGEDDeploymentTargets: !Ref AWS::AccountIdRegions: us-east-1,us-east-2FailureTolerancePercentage: 0MaxConcurrentPercentage: 100InputArtifacts:
- Name: SourceArtifact # Does not matchRunOrder: 1
Describe the solution you'd like
Compare the available InputArtifacts of the deploy action and the artifact reference part of the TemplatePath and ensure that the value exists in both.
Additional context
No response
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
Currently cfn-lint does not detect if the input artifact reference in a CodePipeline CloudFormation deploy action
TemplatePath
actually matches any of the providedInputArtifacts
on the action.The following example does not raise an error, even though the deploy will fail since
SourceRepoArtifact
andSourceArtifact
do not match.Describe the solution you'd like
Compare the available
InputArtifacts
of the deploy action and the artifact reference part of theTemplatePath
and ensure that the value exists in both.Additional context
No response
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: