We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 494b2a3 commit f7e5c95Copy full SHA for f7e5c95
1 file changed
apigw-lambda-dynamodb-terraform/main.tf
@@ -2,7 +2,7 @@ terraform {
2
required_providers {
3
aws = {
4
source = "hashicorp/aws"
5
- version = "~> 4.0.0"
+ version = "~> 5.0"
6
}
7
random = {
8
source = "hashicorp/random"
@@ -85,7 +85,7 @@ resource "aws_lambda_function" "apigw_lambda_ddb" {
85
s3_bucket = aws_s3_bucket.lambda_bucket.id
86
s3_key = aws_s3_object.this.key
87
88
- runtime = "python3.8"
+ runtime = "python3.13"
89
handler = "app.lambda_handler"
90
91
source_code_hash = data.archive_file.lambda_zip.output_base64sha256
@@ -222,4 +222,4 @@ resource "aws_lambda_permission" "api_gw" {
222
principal = "apigateway.amazonaws.com"
223
224
source_arn = "${aws_apigatewayv2_api.http_lambda.execution_arn}/*/*"
225
-}
+}
0 commit comments