Skip to content

Releases: moritzzimmer/terraform-aws-lambda

v7.4.1

12 Jan 11:36
0ba2716

Choose a tag to compare

What's Changed

Full Changelog: v7.4.0...v7.4.1

v7.4.0

12 Jan 10:50
300e112

Choose a tag to compare

What's Changed

Full Changelog: v7.3.0...v7.4.0

v7.3.0

17 Nov 08:33
6f0d1e3

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v7.2.0...v7.3.0

v7.2.0

12 Oct 11:48
5033ef2

Choose a tag to compare

What's Changed

  • feat: code pipeline names can be up to 100 characters by @thisismana in #102

Full Changelog: v7.1.0...v7.2.0

v7.1.0

28 Sep 11:37
02e1888

Choose a tag to compare

What's Changed

Full Changelog: v7.0.0...v7.1.0

v7.0.0

26 Sep 11:57
9be8d18

Choose a tag to compare

Breaking changes

Minimum Terraform and AWS provider versions

Minimum versions of Terraform and the AWS provider have been bumped to it's latest versions. Make sure to upgrade your environment to use Terraform >-= 1.0 and your projects to use AWS Provider >= 5.0.

Refactored S3 based CodePipelines

S3 based deployments relied on CloudTrail (via EventBridge) to propagate uploads of Lambda packages to S3 and start the corresponding CodePipeline. This has been refactored to use S3 Bucket notifications which is the recommended approach by aws.

Make sure to activate S3 bucket notifications for the source bucket of your Lambda function to keep your continuous deployment pipelines working:

resource "aws_s3_bucket" "source" {
  bucket        = "my-ci-bucket"
  force_destroy = true
}

resource "aws_s3_bucket_notification" "source" {
  bucket      = aws_s3_bucket.source.id
  eventbridge = true
}

see S3 or complete for examples and README for details.

If you created a CloudTrail solely for starting your Lambda pipelines you may delete it after migrating to bucket notifications.

Thanks to @saefty for providing this refactoring.

What's Changed

  • feat(deployment)!: use s3 native notifications over cloudtrail logging by @saefty in #96
  • chore(deployment): bumped default base image for CodeBuild by @moritzzimmer in #97
  • chore(deployment): use python 3.11 in CodeBuild by @moritzzimmer in #99
  • chore!: bumped minimum terraform and aws provider versions by @moritzzimmer in #98

Full Changelog: v6.13.0...v7.0.0

v6.13.0

16 May 11:14

Choose a tag to compare

What's Changed

  • feat: permit lambda write access only to it's own logs by @Mi3-14159 in #95

Full Changelog: v6.12.0...v6.13.0

v6.12.0

11 Apr 06:44

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v6.11.0...v6.12.0

v6.11.0

15 Mar 14:39

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v6.10.0...v6.11.0

v6.10.0

31 Jan 08:43

Choose a tag to compare

What's Changed

  • feat: support scaling_config in event_source_mapping by @moritzzimmer in #84
  • fix: allow multiple filters in event source mapping filter criteria by @moritzzimmer in #72

Full Changelog: v6.9.1...v6.10.0