blob: ca574e770a95cda7d0156b013ab28a2335355c9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
}
|