Skip to content
This repository has been archived by the owner on Jun 28, 2019. It is now read-only.

Commit

Permalink
Update changelog and docs, bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
andytinycat committed Jul 7, 2014
1 parent 089b23f commit dfe4220
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Cap-EC2 changelog

## 0.0.15

* Add `ec2_filter_by_status_ok?` to filter out instances that aren't returning `OK`
for their EC2 status checks. [@tomconroy](https://github.com/tomconroy)

## 0.0.14

* Fix issue when tag was present in EC2 but had no value. [@tomconroy](https://github.com/tomconroy)
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ set :ec2_access_key_id, nil
set :ec2_secret_access_key, nil
set :ec2_region, %w{}
set :ec2_contact_point, nil

set :ec2_filter_by_status_ok?, nil
```

#### Order of inheritance
Expand Down Expand Up @@ -84,6 +86,11 @@ If running on EC2 the IAM instance profile credentials will be used if credentia
If this is defined, Cap-EC2 will look for a tag with this name to determine which instances belong to
a given role. The tag name defaults to "Roles".

* filter_by_status_ok?

If this is set to `true`, then Cap-EC2 will not return instances which do not have both EC2 status
checks as `OK`. By default this is set to `nil`, so Cap-EC2 can return you instances which don't have
`OK` status checks. Be warned that just-launched instances take a while to start returning `OK`.

### YAML Configuration

Expand Down
2 changes: 1 addition & 1 deletion lib/cap-ec2/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module CapEC2
VERSION = '0.0.14'
VERSION = '0.0.15'
end

0 comments on commit dfe4220

Please sign in to comment.