Sha256: e637a5bb991c637439cf12aabc365a785d65141205c34675564e019953ec8f50
Contents?: true
Size: 345 Bytes
Versions: 5
Compression:
Stored size: 345 Bytes
Contents
# copy files into tmp for cookbook cookbook_file '/tmp/public.pub' do content 'public.pub' action :create end cookbook_file '/tmp/private.pem' do content 'private.pem' action :create end %w(chef automate compliance).each do |f| cookbook_file "/tmp/#{f}.crt" do content "#{f}.crt" action :create end end
Version data entries
5 entries across 5 versions & 1 rubygems