acquia/moonshot

View on GitHub
sample/bin/aws-codedeploy-samples/conf-mgmt/chef/aws-codedeploy-agent/cookbooks/codedeploy-agent/recipes/default.rb

Summary

Maintainability
A
0 mins
Test Coverage
remote_file "#{Chef::Config[:file_cache_path]}/codedeploy-agent-install" do
    source "https://s3.amazonaws.com/aws-codedeploy-us-east-1/latest/install"
    mode 0755
end

bash "install-codedeploy-agent" do
  code <<-EOH
    #{Chef::Config[:file_cache_path]}/codedeploy-agent-install auto
  EOH
end

service "codedeploy-agent" do
    action [:enable, :start]
end