'Multiple values within multiplier in azure pipeline task

Here is my case : enter image description here

I'm trying to deploy parallely two applications within one stage inside of azure release pipeline with help of multi-configuration parallelization. To do that I need 2 sets of values to fill required parameters let's say (x1,y1,z1) and (x2,y2,z2) . When I create 3 multipliers for that (x,y,z) it goes with each combination of them (x1,y1,z2) for example - is there a way to nest values inside of multipliers ?

Let's say declare one multiplier variable - "application" with values presenting this way :

{
app1:{x1,y1,z1},
app2:{x2,y2,z2}
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source