Asset Parameters in Cloud Formation template generated by AWS CDK

0

I am attempting to use AWS CDK to create a CloudFormation template that is reusable. The template (generated from the "cdk synth" command) contains some resources, a lambda function and a custom resource to trigger the lambda function. It also contains some parameters to be fetched from the user for passing to the lambda. Since CDK generates and includes "asset" parameters like Asset for S3 Bucket, S3 Key and Artifact Hash in the template related to the Lambda assets, the template is not really reusable unless we use CDK to deploy the app. We would like to be able to use this synthesized CloudFormation template to create stacks independently. Is this possible? Is there a way to work around the Asset Parameters in the cdk app so that we can generate reusable templates? Thank you!

質問済み 2年前882ビュー
2回答
0

One option would be to change the way you build Lambda functions in your stack code. Instead of using new lambda.Function(), you could use lambda.fromFunctionName() or lambda.fromFunctionArn() to point to an existing Lambda function that you have uploaded previously using some other method.

However, this is not a best practice. The better practice would be to deploy the stack using AWS CodeBuild, which can run your CDK application for you in a Linux container context.

AWS
エキスパート
回答済み 2年前
  • Thank you @Michael_F! So the lambda itself should probably not be deployed as part of this stack and rather referenced by its ARN, is that right? Could you please elaborate on why this is not a best practice, and why the stack should be deployed using AWS CodeBuild? As I mentioned earlier, we're mainly interested in the template generated by "cdk synth" and would like that template to be reusable so that we can use it independently to deploy stacks in CloudFormation. We also want to make the template available through the AWS marketplace. Thanks!

0

I have pretty much the same question as I also want to use the CloudFormation template in the AWS Marketplace. I'm currently building lambdas as Assets and it's convenient, but they end up in a private stack-specific S3 bucket. My understanding is that for the lambdas to be accessible by customers deploying the template, they need to be built "out of stack" (e.g. using a build script) and uploaded to a public S3 bucket. Is that correct?

回答済み 8ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ