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.
This commit is contained in:
Tim Gross
2025-08-22 15:22:10 -04:00
committed by GitHub
parent f6a078c7e5
commit 767683ce3e

View File

@@ -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
}