sfn 3.1.6 → 3.1.8
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/sfn/command/plan.rb +9 -2
- data/lib/sfn/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b88cf5985a1074b54851f250eb647b3191d41ed8c64e1c02af291d4a8e8a475
|
4
|
+
data.tar.gz: 84b9af7a9d9656d964e12247b68e1ea5a55a4ef7ae1e57a0edefb49e31dc9eec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c857f72b14af4e6e01766e01b64f4de6df5f87e611641f1a3b11d8d99f4bbfedd761ca49da7cafe2852e94f8d74828ee946681b5c39b4707e106923c817baf8
|
7
|
+
data.tar.gz: 7b2a8546ff5819c713e699c5f7ae365581b416555bca83a6d972dbdae0d149d8b2722bff07e0c1f2a4c2a477cdb4e24e453023097d74fa03d36dfd53c7221908
|
data/CHANGELOG.md
CHANGED
data/lib/sfn/command/plan.rb
CHANGED
@@ -124,13 +124,20 @@ module Sfn
|
|
124
124
|
stack.parameters = config_root_parameters
|
125
125
|
end
|
126
126
|
|
127
|
-
# Set options defined within config into stack instance for update request
|
128
|
-
|
129
127
|
ui.info " -> Generating plan information..."
|
130
128
|
else
|
131
129
|
ui.info " -> Loading plan information..."
|
132
130
|
end
|
133
131
|
|
132
|
+
# Set options defined within config into stack instance for update request
|
133
|
+
if config[:merge_api_options]
|
134
|
+
config.fetch(:options, Smash.new).each_pair do |key, value|
|
135
|
+
if stack.respond_to?("#{key}=")
|
136
|
+
stack.send("#{key}=", value)
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
134
141
|
plan = stack.plan || stack.plan_generate
|
135
142
|
namespace.const_get(:Realize).
|
136
143
|
new(config, [name]).execute!
|
data/lib/sfn/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sfn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Roberts
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bogo-cli
|