From 2830930c3c0203a172a7c8eaa1896422da6e03d1 Mon Sep 17 00:00:00 2001 From: Bertrand Lanson Date: Sun, 25 Feb 2024 12:11:48 +0100 Subject: [PATCH] fix(job): change jobs_variables type from map(object({})) to map(map(string)) to accept arbitrary values --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 948b738..dc9b6f6 100644 --- a/variables.tf +++ b/variables.tf @@ -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" }