diff options
Diffstat (limited to 'fdio.infra.terraform/1n_nmd/vpp_device/variables.tf')
-rw-r--r-- | fdio.infra.terraform/1n_nmd/vpp_device/variables.tf | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/fdio.infra.terraform/1n_nmd/vpp_device/variables.tf b/fdio.infra.terraform/1n_nmd/vpp_device/variables.tf new file mode 100644 index 0000000000..893968bfc0 --- /dev/null +++ b/fdio.infra.terraform/1n_nmd/vpp_device/variables.tf @@ -0,0 +1,43 @@ +# 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 +} + +variable "csit_shim_image_aarch64" { + description = "CSIT SHIM AARCH64 docker image" + type = string + default = "fdiotools/csit_shim-ubuntu2004:prod-aarch64" +} + +variable "csit_shim_image_x86_64" { + description = "CSIT SHIM X86_64 docker image" + type = string + default = "fdiotools/csit_shim-ubuntu2004:prod-x86_64" +}
\ No newline at end of file |