Is it possible, for a collection to have a couple of variables, and the environment to inherit a certain variable from the collection depending on the environment name?
eg:
Collection ‘A’ has variable ‘Var1’ with Value ‘192’
Collection ‘A’ has variable ‘Var2’ with Value ‘194’
Collection ‘B’ has variable ‘Var1’ with Value ‘212’
Collection ‘A’ has variable ‘Var2’ with Value ‘195’
Enviroment ‘X’ has variable ‘Var1a’ which auto-populates with the value of Var1 from the collection, depending on which collection is being used.
Enviroment ‘Y’ has variable ‘Var1a’ which auto-populates with the value of Var2 from the collection, depending on which collection is being used.
Does this make sense?