diff --git a/terraform/python/ec2/default/main.tf b/terraform/python/ec2/default/main.tf index 23b8bff0c..f5f254232 100644 --- a/terraform/python/ec2/default/main.tf +++ b/terraform/python/ec2/default/main.tf @@ -249,7 +249,7 @@ resource "null_resource" "remote_service_setup" { # Dnf does not have the module for python 3.10, 3,10, 3.12, therefore we need to manually install it by downloading the package from the python website. # Building and installing the package takes longer then installing it through dnf, so a seperate installation process was made. # The canary should run on a version without the manual installation process - if [ "${var.language_version}" == "3.8" ] || [ "${var.language_version}" = "3.10" ] || [ "${var.language_version}" = "3.12" ]; then + if [ "${var.language_version}" == "3.8" ] || [ "${var.language_version}" = "3.10" ] || [ "${var.language_version}" = "3.12" ] || [ "${var.language_version}" = "3.13" ]; then # Install modules required to compile Python and also run the sample app sudo dnf groupinstall "Development Tools" -y sudo dnf install openssl-devel sqlite-devel libffi-devel -y