mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
* func: remove the lists to override the nomad_local_binary for servers and clients * docs: add a note to the terraform e2e readme * fix: remove the extra 'windows' from the aws_ami filter * style: hcl fmt
24 lines
978 B
HCL
24 lines
978 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
provider "aws" {
|
|
region = var.region
|
|
}
|
|
|
|
module "provision-infra" {
|
|
source = "./provision-infra"
|
|
|
|
server_count = var.server_count
|
|
client_count_linux = var.client_count_linux
|
|
client_count_windows_2016 = var.client_count_windows_2016
|
|
nomad_local_binary_server = var.nomad_local_binary_server
|
|
nomad_local_binary = var.nomad_local_binary
|
|
nomad_local_binary_client_ubuntu_jammy = var.nomad_local_binary_client_ubuntu_jammy
|
|
nomad_local_binary_client_windows_2016 = var.nomad_local_binary_client_windows_2016
|
|
nomad_license = var.nomad_license
|
|
consul_license = var.consul_license
|
|
nomad_region = var.nomad_region
|
|
instance_arch = var.instance_arch
|
|
name = var.name
|
|
}
|