aboutsummaryrefslogtreecommitdiffstats
path: root/terraform-ci-infra/1n_nmd/nginx/variables.tf
blob: 02620140490c01ff464e7131870eff17391b6b1d (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
}