puppet configuration for Multi Machine setup with Vagrant
Hi, I am creating multiple VMs via vagrantfile (everything is OK) and provisioned via puppet (default.pp), which works well and I am able to provision all VMs equally (without any issues).
Question: Now I want all VMS to be provisioned individually (still one puppet file). For example VM1 should install NodeJs, VM2 should be provisioned with mySQL and finally VM3 with Nginx.
Should I still have default.pp under /manifest folder? some documentations refers to use /site.pp as well and specify Node etc.
Thanks in advance.