fix(job): change jobs_variables type from map(object({})) to map(map(string)) to accept arbitrary values

This commit is contained in:
Bertrand Lanson 2024-02-25 12:11:48 +01:00
parent 90641db703
commit 2830930c3c

View File

@ -6,7 +6,7 @@ variable "jobs" {
}
variable "jobs_variables" {
type = map(object({}))
type = map(map(string))
default = {}
description = "Map of object to pass variables to the nomad job(s). Key is the job's name, value is a map of variables and their values"
}