stackup 0.9.2 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8edc4a00c69a1f93ac2549985d3268aecc40c0c
4
- data.tar.gz: 8d5c670e3c2b3fba4718df0368b363dd129ddf40
3
+ metadata.gz: bd4c6df93d7764ed0219483cd60c0aa5c08a4179
4
+ data.tar.gz: 007f8800aa2f70426fde0d66ec449416f5b5c809
5
5
  SHA512:
6
- metadata.gz: dbf64ed470760758b6c6976724502d877f40f37a60537d80a82e708c480ffc9768b958c0532997d4f97b5893c7a3a4d3698276106c85d6e5bdecf8210fb1e21a
7
- data.tar.gz: 120becc33de075bfadc14a5062375d83bdd2138b026eb4926e37256a6a5812b9ee04016069771f96ad785e0963d5052c732922510feb4b4c279a7067910985f6
6
+ metadata.gz: c7cedaf786303aeb459eff38b0ef5fa3df2b3801f702452ff9dd5102cc276fa4cd041949b5ae06e807a802631beb8d3a13a5d485c828bf62fbc0a32f132c7ea3
7
+ data.tar.gz: d8e192013ccdd968b4ec4a6153237282d9abf4e4ee00bb7bc3d8902841529b64a9f479f2c2414eb612c82cf610ec0a2982151033db334da27484139f73434317
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.9.3 (2016-08-21)
2
+
3
+ * Specify CAPABILITY_NAMED_IAM by default, allowing creation of named IAM roles.
4
+
1
5
  ## 0.9.2 (2016-08-04)
2
6
 
3
7
  * Make poll_interval (during deployment) configurable.
data/lib/stackup/stack.rb CHANGED
@@ -68,7 +68,7 @@ module Stackup
68
68
  # accepts a superset of the options supported by
69
69
  # +Aws::CloudFormation::Stack#update+
70
70
  # (see http://docs.aws.amazon.com/sdkforruby/api/Aws/CloudFormation/Stack.html#update-instance_method)
71
- # @option options [Array<String>] :capabilities (CAPABILITY_IAM)
71
+ # @option options [Array<String>] :capabilities (CAPABILITY_NAMED_IAM)
72
72
  # list of capabilities required for stack template
73
73
  # @option options [boolean] :disable_rollback (false)
74
74
  # if true, disable rollback if stack creation fails
@@ -126,7 +126,7 @@ module Stackup
126
126
  if (policy_data = options.delete(:stack_policy_during_update))
127
127
  options[:stack_policy_during_update_body] = MultiJson.dump(policy_data)
128
128
  end
129
- options[:capabilities] ||= ["CAPABILITY_IAM"]
129
+ options[:capabilities] ||= ["CAPABILITY_NAMED_IAM"]
130
130
  delete if ALMOST_DEAD_STATUSES.include?(status)
131
131
  update(options)
132
132
  rescue NoSuchStack
@@ -1,5 +1,5 @@
1
1
  module Stackup
2
2
 
3
- VERSION = "0.9.2"
3
+ VERSION = "0.9.3"
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stackup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Williams
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-08-04 00:00:00.000000000 Z
12
+ date: 2016-08-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: aws-sdk-resources
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  version: '0'
130
130
  requirements: []
131
131
  rubyforge_project:
132
- rubygems_version: 2.6.6
132
+ rubygems_version: 2.5.1
133
133
  signing_key:
134
134
  specification_version: 4
135
135
  summary: Manage CloudFormation stacks