Typically you’ll get an error that looks like this: NoMethodError ————- undefined method `[]’ for nil:NilClass Cookbook Trace: ————— /cookbooks/test/recipes/default.rb:15:in `from_file’ Relevant File Content: ———————- /cookbooks/test/recipes/default.rb: 12: 13: puts “JPM Recipe start” 14: puts node[‘att1’] 15>> puts node[‘att2’][‘att3’] 16: What just happened? Well, this recipe just referenced a sub-attribute (‘att3’) of a […]