I'm trying to specify both a cookbook version and a recipe on a nodes run_list and so far haven't been able to figure out how to do so. I can specify the version just fine and that works, and I can specify the recipe and that works, but if I attempt to do both it fails.
Working:
recipe[cookbook@1.2.3]
Also working:
recipe[cookbook::recipe]
But this fails:
recipe[cookbook::recipe@1.2.3]
I also tried this which failed as well
recipe[cookbook@1.2.3::recipe]