Skip to content

Commit

Permalink
Merge pull request #45 from byu-oit/refactor/require-aws-5.26
Browse files Browse the repository at this point in the history
refactor: require AWS provider 5.26
  • Loading branch information
chill389cc authored Mar 26, 2024
2 parents 931d887 + 442eb8d commit 6ba1919
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
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

0 comments on commit 6ba1919

Please sign in to comment.