knife-cloudformation 0.2.22 → 0.2.24
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/CHANGELOG.md +3 -0
- data/lib/knife-cloudformation/knife/stack.rb +1 -3
- data/lib/knife-cloudformation/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a19f3820b2eb094c8beb9f16765dc2c51621609e
|
|
4
|
+
data.tar.gz: 6d24a415612cd940841f75e65d7320755ca6e374
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 102c2600e1fce7dafb556ff01ae74677912262ea4566b03f15638ba172bca2a70d5376f11e9409428288aebda2d76da1433ac5b5a720fc8c82ee5b1f00a8f74d
|
|
7
|
+
data.tar.gz: 65795f997fbdc84f39a4003e85bb5adac8d78bd6a84833f4948018dfc801c0e140831ee096e219bd273ed91463f2e057e9fe61aa43e74945d571b559c7c6503f
|
data/CHANGELOG.md
CHANGED
|
@@ -132,9 +132,7 @@ module KnifeCloudformation
|
|
|
132
132
|
answer = ui.ask_question("#{k.split(/([A-Z]+[^A-Z]*)/).find_all{|s|!s.empty?}.join(' ')}: ", :default => default)
|
|
133
133
|
validation = KnifeCloudformation::Utils::StackParameterValidator.validate(answer, v)
|
|
134
134
|
if(validation == true)
|
|
135
|
-
|
|
136
|
-
Chef::Config[:knife][:cloudformation][:options][:parameters][k] = answer
|
|
137
|
-
end
|
|
135
|
+
Chef::Config[:knife][:cloudformation][:options][:parameters][k] = answer
|
|
138
136
|
valid = true
|
|
139
137
|
else
|
|
140
138
|
validation.each do |validation_error|
|