#
# Cookbook:: irrigate-orchard_base
# Recipe:: write_node_attributes
#
# Copyright: The Orchard
#
# This recipe writes the node attributes to a file for inspection
#

require 'json'

file '/tmp/kitchen/node_attributes.json' do
  content JSON.pretty_generate(node.to_hash)
  owner 'root'
  group 'root'
  mode '0644'
  action :create
end
