Sha256: 8d42e3ff833f2ec391a832b8f8ec1ef07764b0c3f73f19a530300d1e08fda007
Contents?: true
Size: 547 Bytes
Versions: 5
Compression:
Stored size: 547 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| %w(crt key).each do |ext| cookbook_file "/tmp/#{f}.#{ext}" do content "#{f}.#{ext}" action :create sensitive true end end end # you need to copy this in place cookbook_file '/tmp/delivery.license' do content 'delivery.license' action :create end
Version data entries
5 entries across 5 versions & 1 rubygems