summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/end_to_end/recipes/_chef_client_config.rb
blob: 0e68582af06074f302d69be532bfe92305748215 (plain)
1
2
3
4
5
6
7
8
9
10
11
chef_client_config "Create chef-client's client.rb" do
  chef_server_url "https://localhost"
  chef_license "accept"
  additional_config <<~CONFIG
    begin
      require 'aws-sdk'
    rescue LoadError
      Chef::Log.warn "Failed to load aws-sdk."
    end
  CONFIG
end