Skip to content

Commit

Permalink
Merge pull request chef-boneyard#25 from hw-cookbooks/release
Browse files Browse the repository at this point in the history
update before release
  • Loading branch information
Aaron Baer committed Jan 20, 2014
2 parents c23fcaa + fb9fecc commit c992e2b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## v0.3.1
## v0.3.2
* Add missing "name" attribute to metadata
* install correct libxml2 and libxslt package names for rhel family
* allow multiple MX records (or records in general), passed as array
* Added IAM role support
* Use chef_gem resource for fog install
* correct working record creation and overwrite logic
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ An Amazon Web Services account and a Route 53 zone.

Usage
=====
NOTE: If you do not specify aws credentials, it will use attempt
to use the AWS IAM Role assigned to the instance instead.

```ruby
include_recipe "route53"
Expand All @@ -20,11 +18,28 @@ route53_record "create a record" do
name "test"
value "16.8.4.2"
type "A"

zone_id node[:route53][:zone_id]
aws_access_key_id node[:route53][:aws_access_key_id]
aws_secret_access_key node[:route53][:aws_secret_access_key]

overwrite true
action :create
end
```

NOTE: If you do not specify aws credentials, it will attempt
to use the AWS IAM Role assigned to the instance instead.

Testing
=======

```ruby
bundle install

librarian-chef install
```

Edit .kitchen.yml and update attribute values.

```ruby
kitchen converge
```
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
license "Apache 2.0"
description "Installs/Configures route53"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.3.1"
version "0.3.2"

0 comments on commit c992e2b

Please sign in to comment.