We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
You can pass node-specific attributes to Itamae by --node-json option.
--node-json
$ cat node.json {"name": "app-1"}
$ cat template.erb <%= node[:name] %>
$ cat recipe.rb execute "hostname #{node[:name]}" template "/path/to/dest" do source "template.erb" end
$ itamae local --node-json node.json recipe.rb