Hello all
I plan to deploy same bin to a list of host
That is done
And each host should receive its own configuration
I have a data file
vm.dirt:
id: 123
vm.bar:
id: 12
And a template configuration file production.yml
id: {{ id }}
What I want is that
When I exec app.install on both,
Then vm.dirt has production.yml == id: 123
And vm.bar has production.yml == id: 12
I expect to have missed it in documentation, mailing list, google
Thoughts ?, Thierry