AWS Lambda Deploy with YAML

YAML parameters for AWS Lambda Deploy

NameTypeDescription
action RequiredStringThe name of the action.
type RequiredStringThe type of the action. Should be set to AWS_LAMBDA_DEPLOY.
function_name RequiredStringThe name of the Lambda function.
integration RequiredStringThe ID of the integration.
region RequiredStringThe name of the Amazon region. The full list of regions is available here.
local_pathStringThe path in the repository.
deployment_excludesString[]The paths and/or files that will be left out during the deployment.

YAML example for AWS Lambda Deploy

yaml
actions: - action: "Deploy function my-function" type: "AWS_LAMBDA_DEPLOY" integration: "my_integration" function_name: "my-function" region: "us-east-1" local_path: "/" deployment_excludes: - "/assets/" - "file.txt" deployment_includes: - "/assets/assets-new/" - "/assets/file.txt"

Last modified on Sep 24, 2024