VarsMap is currently map[interface{}]interface{} because task vars are considered as map[interface{}]interface{}. We want to change it to map[string]interface{} because it provides more consistency within henchman as most of the maps from other packages that we use are map[string]interface{}. Also map[string]interface{} is more commonly use.
VarsMap is currently map[interface{}]interface{} because task vars are considered as map[interface{}]interface{}. We want to change it to map[string]interface{} because it provides more consistency within henchman as most of the maps from other packages that we use are map[string]interface{}. Also map[string]interface{} is more commonly use.