Sha256: 18652d63a1ebe272a836426c2da6a1748bbb394de24d1ee4c354145c4a078b04
Contents?: true
Size: 327 Bytes
Versions: 12
Compression:
Stored size: 327 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
12 entries across 12 versions & 1 rubygems