Infra: Do not strict check keys in Ansible
[csit.git] / terraform-ci-infra / 1n_nmd / nginx / variables.tf
1 # Nomad
2 variable "nomad_datacenters" {
3   description = "Nomad data centers"
4   type        = list(string)
5   default     = [ "dc1" ]
6 }
7
8 variable "nomad_host_volume" {
9   description = "Nomad Host Volume"
10   type        = string
11   default     = "persistence"
12 }
13
14 # Nginx
15 variable "nginx_job_name" {
16   description = "Nginx job name"
17   type        = string
18   default     = "nginx"
19 }
20
21 variable "nginx_use_host_volume" {
22   description = "Use Nomad host volume feature"
23   type        = bool
24   default     = false
25 }