Infra: Do not strict check keys in Ansible
[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 }
32
33 variable "csit_shim_image_aarch64" {
34   description = "CSIT SHIM AARCH64 docker image"
35   type        = string
36   default     = "fdiotools/csit_shim-ubuntu2004:prod-aarch64"
37 }
38
39 variable "csit_shim_image_x86_64" {
40   description = "CSIT SHIM X86_64 docker image"
41   type        = string
42   default     = "fdiotools/csit_shim-ubuntu2004:prod-x86_64"
43 }