Skip to content

Commit 43a6727

Browse files
committed
Update for python3.11, boto3==1.28.15, botocore==1.31.15
1 parent ced88a7 commit 43a6727

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

layer/package.zip

1.32 MB
Binary file not shown.

layer/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
boto3==1.26.144
2-
botocore==1.29.144
1+
boto3==1.28.15
2+
botocore==1.31.15
33
requests==2.31.0

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ resource "aws_lambda_layer_version" "boto3_botocore_requests" {
66
filename = "${local.lambda_layer_dir}/package.zip"
77
source_code_hash = filebase64sha256("${local.lambda_layer_dir}/package.zip")
88
layer_name = "boto3_botocore_requests"
9-
compatible_runtimes = ["python3.10", "python3.9"]
9+
compatible_runtimes = ["python3.11", "python3.10", "python3.9"]
1010
compatible_architectures = ["arm64", "x86_64"]
1111
}
1212

terraform.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
aws = {
55
source = "hashicorp/aws"
6-
version = ">= 5.5.0"
6+
version = ">= 5.11.0"
77
}
88
archive = {
99
source = "hashicorp/archive"

0 commit comments

Comments
 (0)