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 +4 -4
- data/CHANGES.md +4 -0
- data/lib/stackup/stack.rb +2 -2
- data/lib/stackup/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd4c6df93d7764ed0219483cd60c0aa5c08a4179
|
|
4
|
+
data.tar.gz: 007f8800aa2f70426fde0d66ec449416f5b5c809
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c7cedaf786303aeb459eff38b0ef5fa3df2b3801f702452ff9dd5102cc276fa4cd041949b5ae06e807a802631beb8d3a13a5d485c828bf62fbc0a32f132c7ea3
|
|
7
|
+
data.tar.gz: d8e192013ccdd968b4ec4a6153237282d9abf4e4ee00bb7bc3d8902841529b64a9f479f2c2414eb612c82cf610ec0a2982151033db334da27484139f73434317
|
data/CHANGES.md
CHANGED
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 (
|
|
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] ||= ["
|
|
129
|
+
options[:capabilities] ||= ["CAPABILITY_NAMED_IAM"]
|
|
130
130
|
delete if ALMOST_DEAD_STATUSES.include?(status)
|
|
131
131
|
update(options)
|
|
132
132
|
rescue NoSuchStack
|
data/lib/stackup/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
132
|
+
rubygems_version: 2.5.1
|
|
133
133
|
signing_key:
|
|
134
134
|
specification_version: 4
|
|
135
135
|
summary: Manage CloudFormation stacks
|