From 7c90b6a0f1d0e14f64364d0213e473d447980d05 Mon Sep 17 00:00:00 2001 From: pmikus Date: Thu, 28 Jan 2021 08:24:35 +0000 Subject: Infra: Terraform vpp_device module + Convert to module + Fix memory limit Signed-off-by: pmikus Change-Id: I95285faabbf7bad7fcb7f3b0c9b4e79641c6b95c (cherry picked from commit 2afd8f4fe26ae1f1d183ecac8f9daa85f68bc634) --- terraform-ci-infra/1n_nmd/vpp_device/variables.tf | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 terraform-ci-infra/1n_nmd/vpp_device/variables.tf (limited to 'terraform-ci-infra/1n_nmd/vpp_device/variables.tf') diff --git a/terraform-ci-infra/1n_nmd/vpp_device/variables.tf b/terraform-ci-infra/1n_nmd/vpp_device/variables.tf new file mode 100644 index 0000000000..ca574e770a --- /dev/null +++ b/terraform-ci-infra/1n_nmd/vpp_device/variables.tf @@ -0,0 +1,31 @@ +# Nomad +variable "nomad_datacenters" { + description = "Nomad data centers" + type = list(string) + default = [ "dc1" ] +} + +# CSIT SHIM +variable "csit_shim_job_name" { + description = "CSIT SHIM job name" + type = string + default = "prod-csit-shim" +} + +variable "csit_shim_group_count" { + description = "Number of CSIT SHIM group instances" + type = number + default = 1 +} + +variable "csit_shim_cpu" { + description = "CSIT SHIM task CPU" + type = number + default = 2000 +} + +variable "csit_shim_mem" { + description = "CSIT SHIM task memory" + type = number + default = 10000 +} \ No newline at end of file -- cgit 1.2.3-korg