From 767683ce3e160cce5a9a79e25e86df2d4071b41f Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Fri, 22 Aug 2025 15:22:10 -0400 Subject: [PATCH] E2E: allow setting instance_type variable (#26607) When we refactored the E2E provisioning to allow it to be reused by the upgrade testing, we didn't thread the `instance_type` variable from the main module down into the `provision-infra` module. This prevents you from setting a custom instance size when deploying the E2E cluster manually. --- e2e/terraform/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/e2e/terraform/main.tf b/e2e/terraform/main.tf index 129411eae..0bf8c2bf7 100644 --- a/e2e/terraform/main.tf +++ b/e2e/terraform/main.tf @@ -19,5 +19,6 @@ module "provision-infra" { consul_license = var.consul_license nomad_region = var.nomad_region instance_arch = var.instance_arch + instance_type = var.instance_type name = var.name }