Sha256: 9f662eaaf5699c15dc939a8d622f6e0f9f849681b76ae12a50174729db1c09f8
Contents?: true
Size: 396 Bytes
Versions: 12
Compression:
Stored size: 396 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
Version data entries
12 entries across 12 versions & 1 rubygems