From e3847c2f9d684fa2ef2ff90b546c3d8429e5df2f Mon Sep 17 00:00:00 2001 From: Chris McKeen Date: Thu, 1 Jul 2021 09:56:15 -0400 Subject: [PATCH] ATEAM-10669 update 0.11 terraform to use python 3.8 --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 51962ba..65a6ad0 100644 --- a/main.tf +++ b/main.tf @@ -110,7 +110,7 @@ resource "aws_lambda_function" "autoscale_handling" { function_name = "${var.vpc_name}-${var.autoscale_handler_unique_identifier}" role = "${aws_iam_role.autoscale_handling.arn}" handler = "autoscale.lambda_handler" - runtime = "python2.7" + runtime = "python3.8" source_code_hash = "${base64sha256(file("${data.archive_file.autoscale.output_path}"))}" description = "Handles DNS for autoscaling groups by receiving autoscaling notifications and setting/deleting records from route53" }