Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ module "lambda_api" {

## Requirements
* Terraform version 0.13.2 or greater
* AWS provider version 3.67 or greater
* AWS provider version 5.26 or greater

## Inputs
| Name | Type | Description | Default |
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v4.0.0
2/6/2023 - Enable support for nodejs20.x runtime
- Require AWS provider >=5.26 to support nodejs20.x runtime

## v3.0.0
2/6/2023 - Set `desync_mitigation_mode` to `strictest` in ALB
- Require AWS provider >=3.67 to support `desync_mitigation_mode`
Expand Down
2 changes: 1 addition & 1 deletion examples/docker-lambda/docker.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
provider "aws" {
version = "~> 3.67"
version = "~> 5.26"
region = "us-west-2"
}

Expand Down
2 changes: 1 addition & 1 deletion examples/simple-lambda-in-vpc/example.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
provider "aws" {
version = "~> 3.67"
version = "~> 5.26"
region = "us-west-2"
}

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_version = ">= 0.13.2"
required_providers {
aws = ">= 3.67"
aws = ">= 5.26"
}
}

Expand Down