Any ideas on this?
In general what approaches do you guys use to combine infrastructure inventories/vars with other projects so they can use system level properties as needed. Coming from puppet we typically had a project repo with a provisioning repo. the provisioning repo inherited from a base infrastructure init.pp. What is a good way to do something similar to this in ansible? e.g.
inventories are tied to environments (staging / production / development). group vars can be used to group variables per environment. "all" can be used for all properties not included in a given group. This makes sense, but i would like to reuse this setup for other projects to use vars from this setup --- Single place for all variables partitioned prod/dev/stage and inherited by other projects.
Hopefully this makes more sense.