Gem Version

Customized version of Itamae and plugin

Concept

  • More like Chef
  • Minimum attributes
  • Support AWS Resource
  • Require Rake

Installation

$ gem install itamae-mitsurin
$ itamae-mitsurin init [project_name]

Usage AWS Resource

# recipe

Aws.config[:region] = 'ap-northeast-1'

aws_ebs_volume 'db_ebs_volume' do
  action [:create, :attach]
  availability_zone 'ap-northeast-1b'
  device '/dev/xvdf'
  volume_type 'standard'
  size 30
  instance_id node['ec2']['instance-id']
end

Contributing

If you have a problem, please create an issue or a pull request.

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request