AWS::ServiceCatalog::CloudFormationProvisionedProduct.Outputs
See original GitHub issuecfn-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.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (4 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
released with https://pypi.org/project/cfn-lint/0.47.1/
Thanks. I put in a patch to put it back in until the resource spec is fixed.