Skip to content

Commit 442eb8d

Browse files
committed
refactor: require AWS provider 5.26
This is to allow nodejs20.x (see https://github.com/hashicorp/terraform-provider-aws/blob/main/CHANGELOG.md#5260-november-16-2023)
1 parent 931d887 commit 442eb8d

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module "lambda_api" {
8686

8787
## Requirements
8888
* Terraform version 0.13.2 or greater
89-
* AWS provider version 3.67 or greater
89+
* AWS provider version 5.26 or greater
9090

9191
## Inputs
9292
| Name | Type | Description | Default |

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v4.0.0
4+
2/6/2023 - Enable support for nodejs20.x runtime
5+
- Require AWS provider >=5.26 to support nodejs20.x runtime
6+
37
## v3.0.0
48
2/6/2023 - Set `desync_mitigation_mode` to `strictest` in ALB
59
- Require AWS provider >=3.67 to support `desync_mitigation_mode`

examples/docker-lambda/docker.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
provider "aws" {
2-
version = "~> 3.67"
2+
version = "~> 5.26"
33
region = "us-west-2"
44
}
55

examples/simple-lambda-in-vpc/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
provider "aws" {
2-
version = "~> 3.67"
2+
version = "~> 5.26"
33
region = "us-west-2"
44
}
55

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_version = ">= 0.13.2"
33
required_providers {
4-
aws = ">= 3.67"
4+
aws = ">= 5.26"
55
}
66
}
77

0 commit comments

Comments
 (0)