blob: 589ccee94af9c8b4c7638905268b37ce074eed2f (
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
|
# Nomad
variable "nomad_datacenters" {
description = "Nomad data centers"
type = list(string)
default = ["dc1"]
}
variable "nomad_host_volume" {
description = "Nomad Host Volume"
type = string
default = "persistence"
}
# Nginx
variable "nginx_job_name" {
description = "Nginx job name"
type = string
default = "nginx"
}
variable "nginx_use_host_volume" {
description = "Use Nomad host volume feature"
type = bool
default = false
}
|