Brian,
I tried it, but the response is very polluted. I am looking for something more simple.
e.g:
# cat hosts
[web:children]
web-region1
......
[web-region1]
1.2.3.4 var1="[1, 2, 3]" var2="caipirinha"
1.2.3.5 var1="[6, 7, 8]" var2="caipirinha-com-gelo"
......
# cat group_vars/web-region1
var_name1: "1, 2"
var_name2: "3, 4"
.......
So, the expectation should be to create a single
# cat web-region1.yml
web-region1:
hosts:
var1: "[1, 2, 3]"
var2: "caipirinha"
var1: "[6, 7, 8]"
var2: "caipirinha-com-gelo"
vars:
var_name1: "1, 2"
var_name2: "3, 4"
#
Somebody knows if have some way? Any clue?