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 git user
- Add this content to your
.gitignore
tmp-nodes/
logs/
Project.json
!.keep
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.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request