diff --git a/CHANGELOG.md b/CHANGELOG.md index c626762c..6393af9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.0.96 +#### **coralogix-aws-shipper** +### 🧰 Bug fixes 🧰 +- Update the lambda runtime to Amazon 2023, the lambda module version to 7.2 and the terraform version to 5.32 + ## v1.0.95 ### 🚀 New components 🚀 #### **coralogix-aws-shipper** diff --git a/modules/coralogix-aws-shipper/main.tf b/modules/coralogix-aws-shipper/main.tf index 29e3e39e..fab71ecc 100644 --- a/modules/coralogix-aws-shipper/main.tf +++ b/modules/coralogix-aws-shipper/main.tf @@ -36,9 +36,9 @@ module "lambda" { source = "terraform-aws-modules/lambda/aws" function_name = each.value.lambda_name == null ? module.locals[each.key].function_name : each.value.lambda_name description = "Send logs to Coralogix." - version = "6.5.0" + version = "7.2.0" handler = "bootstrap" - runtime = "provided.al2" + runtime = "provided.al2023" architectures = [var.cpu_arch] memory_size = var.memory_size timeout = var.timeout diff --git a/modules/coralogix-aws-shipper/versions.tf b/modules/coralogix-aws-shipper/versions.tf index f3c158ad..342a8341 100644 --- a/modules/coralogix-aws-shipper/versions.tf +++ b/modules/coralogix-aws-shipper/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.15.1" + version = ">= 5.32.0" } random = { source = "hashicorp/random" diff --git a/tests/coralogix-aws-shipper/coralogix-aws-shipper.tf b/tests/coralogix-aws-shipper/coralogix-aws-shipper.tf index c97097f3..82330560 100644 --- a/tests/coralogix-aws-shipper/coralogix-aws-shipper.tf +++ b/tests/coralogix-aws-shipper/coralogix-aws-shipper.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.0" + version = "~> 5.32" } } }