Skip to content

Instantly share code, notes, and snippets.

@claco
Last active December 19, 2015 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save claco/5912133 to your computer and use it in GitHub Desktop.
Save claco/5912133 to your computer and use it in GitHub Desktop.
# Attributes
default["some"]["thing"] = "foop"
# Recipe
# This prints the value
Chef::Log.warn node["some"]["thing"]
template "farp" do
source "farp.erb"
variables(
:farp => node["some"]["thing"]
)
end
# Template Erb
<%= @farp %> # This is nil/blank in the template erb output
-----------------
# this works
# Recipe
template "farp" do
source "farp.erb"
end
# Template Erb
<%= node["some"]["thing"] %> # This prints the value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment