fix(job): change jobs_variables type from map(object({})) to map(map(string)) to accept arbitrary values
This commit is contained in:
parent
90641db703
commit
2830930c3c
@ -6,7 +6,7 @@ variable "jobs" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
variable "jobs_variables" {
|
variable "jobs_variables" {
|
||||||
type = map(object({}))
|
type = map(map(string))
|
||||||
default = {}
|
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"
|
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"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user