Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Dec 2, 2020
2 parents 11532b3 + a8c6fa6 commit bac9aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cfnlint/rules/resources/properties/ValueRefGetAtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def check_value_getatt(self, value, path, **kwargs):
# A custom resource voids the spec. Move on
return matches

if resource_type == 'AWS::CloudFormation::Stack' and resource_attribute[0] == 'Outputs':
if resource_type in ['AWS::CloudFormation::Stack', 'AWS::ServiceCatalog::CloudFormationProvisionedProduct'] and resource_attribute[0] == 'Outputs':
# Nested Stack Outputs
# if its a string type we are good and return matches
# if its a list its a failure as Outputs can only be strings
Expand Down

0 comments on commit bac9aec

Please sign in to comment.