question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

AWS::ServiceCatalog::CloudFormationProvisionedProduct.Outputs

See original GitHub issue

cfn-lint version: 0.47.0

Given the following example template:

AWSTemplateFormatVersion: '2010-09-09'
Description: Serverless Stack
Resources:
    SimpleLambda:
      Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct
      Properties:
        ProductName: Basic Lambda
        ProvisioningArtifactName: '1.0'
      
    SimpleApiGateway:
      Type: AWS::ServiceCatalog::CloudFormationProvisionedProduct
      Properties:
        ProductName: API Gateway
        ProvisioningArtifactName: '1.0'
        ProvisioningParameters:
            -
              Key: LambdaArn
              Value: !GetAtt [SimpleLambda, Outputs.SCLambdaArn]

The following linting errors are thrown:

E1010 Invalid GetAtt SimpleLambda.Outputs.SCLambdaArn for resource SimpleApiGateway
product.template.yaml:18:15

This issue was fixed in #1659 PR, but I’m still getting this error.

Documentation: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationprovisionedproduct.html#aws-resource-servicecatalog-cloudformationprovisionedproduct--examples

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5 (4 by maintainers)

github_iconTop GitHub Comments

2reactions
kddejongcommented, Mar 11, 2021
1reaction
kddejongcommented, Mar 11, 2021

Thanks. I put in a patch to put it back in until the resource spec is fixed.

Read more comments on GitHub >

github_iconTop Results From Across the Web

AWS::ServiceCatalog::CloudFormationProvisionedProduct
A provisioned product is a resourced instance of a product. For example, provisioning a product based on a AWS CloudFormation template launches a...
Read more >
Provisioned product outputs are now available in AWS ...
AWS Service Catalog now supports obtaining outputs from a Service Catalog provisioned product in an AWS CloudFormation template.
Read more >
get-provisioned-product-outputs - AWS Documentation
--cli-input-json (string) Performs service operation based on the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton .
Read more >
Viewing provisioned product information - AWS Service Catalog
Go to the Provisioned product details page to view information about provisioned products that you have deployed in AWS Service Catalog.
Read more >
GetProvisionedProductOutputs - AWS Service Catalog
This API takes either a ProvisonedProductId or a ProvisionedProductName , along with a list of one or more output keys, and responds with...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found