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