Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

AWS Lambda function's code consists of scripts or compiled programs and their dependencies. We use a deployment package to deploy our function code to Lambda. Lambda supports two types of deployment packages: container images and .zip file archives. We are going to use the updateLambdaFunctionCode operation to deploy the function code. The operation can deploy the function code from the AWS ECR, S3 Bucket, and local Archive directory. We can select the option to publish a new version, by default operation will not publish the new version. Using the Environment variables file or Input Argument we can also add the function Environment variables. Operation also support encryption of the variables using AWS KSM KMS key. Operation will use the configured AWS cloud account to perform the operation.

...

Once the updateLambdaFunctionCode operation successful we can see the updated published version, from the plugin output and AWS Lambda console.

...

Image RemovedImage Added

We can see the variable details on the AWS Lambda Function console.

...