Gem Version

Customized version of Itamae and plugin

Concept

  • Like more Chef
  • Little attributes
  • Support AWS Resource
  • Running on the RakeTask

Installation

$ gem install itamae-mitsurin
$ manaita init

If you want to use the AWS Resources

$ aws configure
  • Tips for AmazonLinux yum install ruby-devel ruby20-devel gcc-c++ rubygem20-io-console

Usage AWS Resource

# recipe

aws_ebs_volume "ebs_name" do
  action [:create, :attach]
  region "ap-northeast-1"
  availability_zone "ap-northeast-1a"
  device '/dev/xvdb'
  volume_type 'standard'
  size 10
  instance_id 'i-xxxxxxx'
end

Wiki

Reference

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