blob: 1a1e45f89f9f15e7b6cd325c480b65b1efaa008a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Nomad
variable "nomad_datacenters" {
description = "Nomad data centers"
type = list(string)
default = [ "dc1" ]
}
# Nginx
variable "nginx_job_name" {
description = "Nginx job name"
type = string
default = "nginx"
}
|