From b44f6b6cdeffb56597cdad590f18a501acdc702c Mon Sep 17 00:00:00 2001 From: Pahud Hsieh Date: Thu, 19 Sep 2024 12:53:52 -0400 Subject: [PATCH] Update README.md improve the doc about the code signing --- packages/aws-cdk-lib/aws-lambda/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/aws-cdk-lib/aws-lambda/README.md b/packages/aws-cdk-lib/aws-lambda/README.md index 403460f8ed1b0..1b34ddd81bb25 100644 --- a/packages/aws-cdk-lib/aws-lambda/README.md +++ b/packages/aws-cdk-lib/aws-lambda/README.md @@ -1326,6 +1326,8 @@ When enabled, AWS Lambda checks every code deployment and verifies that the code For more information, see [Configuring code signing for AWS Lambda](https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html). The following code configures a function with code signing. +Please note the code will not be automatically signed before deployment. To ensure your code is properly signed, you'll need to conduct the code signing process either through the AWS CLI (Command Line Interface) [start-signing-job](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/signer/start-signing-job.html) or by accessing the AWS Signer console. + ```ts import * as signer from 'aws-cdk-lib/aws-signer';