I have a scenario where I need to run a single job multiple times with varying parameters.
In an effort to reduce duplication I looked to use the matrix feature but as it generates the product of the parameter lists I ended up with far more jobs than needed and the number of exclusions required would be too complex to maintain.
It would be good to be able to generate jobs from a map of parameters where a job is created for every key of the map. Essentially like a foreach where the set of parameters from each element create a different job configuration.