From ee4289e2ff3a1a2f8dfa1f64b1bcf88eb6aff76c Mon Sep 17 00:00:00 2001 From: Andrew Philpot Date: Tue, 14 Nov 2023 14:22:40 -0800 Subject: [PATCH] Update main.tf support python 3.9, 3.10 --- main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.tf b/main.tf index 2dc21bf..ddbbafb 100644 --- a/main.tf +++ b/main.tf @@ -98,6 +98,8 @@ locals { "python3.6" = "python.py" "python3.7" = "python.py" "python3.8" = "python.py" + "python3.9" = "python.py" + "python3.10" = "python.py" } lambda_cloudformation_template_body = var.enabled && var.build_mode == "LAMBDA" ? templatefile("${path.module}/lambda_builders/cfn.yaml.tmpl", { lambda_builder_code = file("${path.module}/lambda_builders/${local.lambda_builder_filenames[var.runtime]}")