From f6d503ddd0641c247ff36f0b06c11cfdd783d564 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Fri, 4 Jun 2021 10:32:51 -0400 Subject: [PATCH] e2e: pass nomad_url variable --- e2e/terraform/nomad.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/e2e/terraform/nomad.tf b/e2e/terraform/nomad.tf index 3bdf75377..dd472ab3e 100644 --- a/e2e/terraform/nomad.tf +++ b/e2e/terraform/nomad.tf @@ -19,6 +19,8 @@ module "nomad_server" { nomad_local_binary = count.index < length(var.nomad_local_binary_server) ? var.nomad_local_binary_server[count.index] : var.nomad_local_binary + nomad_url = count.index < length(var.nomad_url_server) ? var.nomad_url_server[count.index] : var.nomad_url + nomad_enterprise = var.nomad_enterprise nomad_license = var.nomad_license nomad_acls = var.nomad_acls @@ -56,6 +58,8 @@ module "nomad_client_ubuntu_bionic_amd64" { nomad_local_binary = count.index < length(var.nomad_local_binary_client_ubuntu_bionic_amd64) ? var.nomad_local_binary_client_ubuntu_bionic_amd64[count.index] : var.nomad_local_binary + nomad_url = count.index < length(var.nomad_url_client_ubuntu_bionic_amd64) ? var.nomad_url_client_ubuntu_bionic_amd64[count.index] : var.nomad_url + nomad_enterprise = var.nomad_enterprise nomad_acls = false cluster_name = local.random_name