README.md in itamae-mitsurin-0.2 vs README.md in itamae-mitsurin-0.3
- old
+ new
@@ -2,35 +2,36 @@
Customized version of Itamae and plugin
## Concept
-- More like Chef
-- Minimum attributes
+- Like more Chef
+- Little attributes
- Support AWS Resource
-- Require Rake
## Installation
```
$ gem install itamae-mitsurin
-$ itamae-mitsurin init [project_name]
+$ mkdir project_dir
+$ cd project_dir
+$ itamae-mitsurin init
```
## Usage AWS Resource
```ruby
# recipe
Aws.config[:region] = 'ap-northeast-1'
-aws_ebs_volume 'db_ebs_volume' do
+aws_ebs_volume "ebs_name" do
action [:create, :attach]
- availability_zone 'ap-northeast-1b'
- device '/dev/xvdf'
+ availability_zone "ap-northeast-1a"
+ device '/dev/xvdb'
volume_type 'standard'
- size 30
- instance_id node['ec2']['instance-id']
+ size 10
+ instance_id 'i-xxxxxxx'
end
```
## Contributing