Infra: Terraform vpp_device module
[csit.git] / 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 (file)
index 0000000..ca574e7
--- /dev/null
@@ -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