Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Serialize ship.tags to state file, mention ship.tags in README #71

Merged
merged 2 commits into from
Feb 7, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Here's an example Blimpfile:
ship.region = 'us-west-1' # [Optional] defaults to us-west-2
ship.username = 'ubuntu' # [Optional] SSH username, defaults to "ubuntu" for AWS machines
ship.flavor = 'm1.small' # [Optional] defaults to t1.micro
ship.tags = {:mytag => 'somevalue'} # [Optional]
end
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/blimpy/box.rb
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def type
end

def serializable_attributes
[:type, :name, :region, :dns, :internal_dns]
[:type, :name, :region, :dns, :internal_dns, :flavor, :tags]
end

def immutable_attributes
Expand Down