I'm starting to feel like I don't want to use #Ansible anymore. I have a simple data structure:
```
vars:
foo:
exporters:
exp1: ...
exp2: ...
bar:
exporters:
exp1: ...
exp3: ...
```
Now I need this one instead:
```
exp1: [ foo, bar, ]
exp2: [ foo, ]
exp3: [ bar, ]
```
Doing that conversion feels so contrived (I haven't even finished writing it) that I want to give up and find alternatives. Ansible is simple, but just like Lua, sometimes it feels like ASM.