eb_deployer 0.0.5 → 0.0.6
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.
|
@@ -17,6 +17,11 @@ module EbDeployer
|
|
|
17
17
|
transform_output_to_settings(transforms)
|
|
18
18
|
end
|
|
19
19
|
|
|
20
|
+
def output(key)
|
|
21
|
+
stack.outputs.find { |o| o.key == key }.try(:value)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
|
|
20
25
|
private
|
|
21
26
|
|
|
22
27
|
def update_stack(template, params)
|
|
@@ -55,9 +60,6 @@ module EbDeployer
|
|
|
55
60
|
end while !SUCCESS_STATS.include?(stats)
|
|
56
61
|
end
|
|
57
62
|
|
|
58
|
-
def output(key)
|
|
59
|
-
stack.outputs.find { |o| o.key == key }.try(:value)
|
|
60
|
-
end
|
|
61
63
|
|
|
62
64
|
def extract_params
|
|
63
65
|
Hash[ENV.map {|k, v| k =~ /^AWSRESOURCES_(.*)/ ? [$1, v] : nil }.compact]
|
data/lib/eb_deployer/version.rb
CHANGED