ca574e770a95cda7d0156b013ab28a2335355c9c
[csit.git] / terraform-ci-infra / 1n_nmd / vpp_device / variables.tf
1 # Nomad
2 variable "nomad_datacenters" {
3   description = "Nomad data centers"
4   type        = list(string)
5   default     = [ "dc1" ]
6 }
7
8 # CSIT SHIM
9 variable "csit_shim_job_name" {
10   description = "CSIT SHIM job name"
11   type        = string
12   default     = "prod-csit-shim"
13 }
14
15 variable "csit_shim_group_count" {
16   description = "Number of CSIT SHIM group instances"
17   type        = number
18   default     = 1
19 }
20
21 variable "csit_shim_cpu" {
22   description = "CSIT SHIM task CPU"
23   type        = number
24   default     = 2000
25 }
26
27 variable "csit_shim_mem" {
28   description = "CSIT SHIM task memory"
29   type        = number
30   default     = 10000
31 }