Deploy code to AWS Lambda functions from CircleCI. Uploads your deployment package to S3, then updates the Lambda function via the AWS CLI.
CircleCI Orb Registry Page - The official registry page of this orb for all versions, executors, commands, and jobs described.
CircleCI Orb Docs - Docs for using, creating, and publishing CircleCI Orbs.
We welcome issues to and pull requests against this repository!
Prerequisites:
- An initial semver deployment must be performed in order for Development orbs to be published and seen in the Orb Registry.
A Development orb can be created to help with rapid development or testing. To create a Development orb, change the orb-tools/publish job in test-deploy.yml to be the following:
- orb-tools/publish:
orb_name: circleci/aws-lambda
vcs_type: << pipeline.project.type >>
pub_type: dev
# Ensure this job requires all test jobs and the pack job.
requires:
- orb-tools/pack
- integration-test-params
context: orb-publishing
filters: *filtersThe job output will contain a link to the Development orb Registry page. The parameters enable_pr_comment and github_token can be set to add the relevant publishing information onto a pull request. Please refer to the orb-tools/publish documentation for more information and options.