Files
nomad/enos/enos-modules.hcl
Juana De La Cuesta 4a75d2de63 Adjust the servers to be always linux instances (#25172)
* func: add possibility of having different binaries for server and clients

* style: rename binaries modules

* docs: update comments

* fix: correct the token input variable for fetch binaries
2025-02-24 13:09:57 +01:00

27 lines
495 B
HCL

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
module "fetch_binaries" {
source = "./modules/fetch_binaries"
}
module "provision_cluster" {
source = "../e2e/terraform/provision-infra"
}
module "run_workloads" {
source = "./modules/run_workloads"
}
module "test_cluster_health" {
source = "./modules/test_cluster_health"
}
module "upgrade_servers" {
source = "./modules/upgrade_servers"
}
module "upgrade_clients" {
source = "./modules/upgrade_clients"
}