Skip to content

Instantly share code, notes, and snippets.

@Joseph-R
Last active August 29, 2015 14:19
Show Gist options
  • Save Joseph-R/0a6204544e5ac40ee9c3 to your computer and use it in GitHub Desktop.
Save Joseph-R/0a6204544e5ac40ee9c3 to your computer and use it in GitHub Desktop.
require 'chef/provisioning/aws_driver'
with_driver 'aws'
# Public subnet
machine 'test' do
tag 'test_successful'
recipe 'hdp::default'
with_machine_options :bootstrap_options => {
:key_name => 'jreid2012',
:image_id => 'ami-2c348844',
:subnet => 'subnet-aebab1da',
:security_groups => [ 'hortonworks_chef' ],
:instance_type => 'm3.medium',
:associate_public_ip_address => true
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment