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 02b34cd commit 17ef413Copy full SHA for 17ef413
lambda-ssm-parameter-terraform/main.tf
@@ -2,7 +2,7 @@ terraform {
2
required_providers {
3
aws = {
4
source = "hashicorp/aws"
5
- version = "~> 4.22"
+ version = "~> 5.0"
6
}
7
8
@@ -31,7 +31,7 @@ resource "aws_lambda_function" "lambda_function" {
31
source_code_hash = data.archive_file.lambda_zip_file.output_base64sha256
32
handler = "app.handler"
33
role = aws_iam_role.lambda_iam_role.arn
34
- runtime = "nodejs16.x"
+ runtime = "nodejs22.x"
35
environment {
36
variables = {
37
SSMParameterName = var.ssm_parameter_name
0 commit comments