uc3-sam-sceptre 0.0.11 → 0.0.13
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/lib/uc3-sam-sceptre/version.rb +1 -1
- data/lib/uc3-sam-sceptre.rb +8 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1765a01a7c85de28fb14835de1da594167d54a746e45c50847cec71d317d92e0
|
4
|
+
data.tar.gz: a50cd3fe52e737cb2d1d9ba07cbced3f55fe7915bd8cebfda2448c74a1004485
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e974e4e01cd05b1da2b8ca4e0d6c6975d964bf938c117c2ea3053d36a7c0e298b6664315afa546b70eeb1d7d00069951969a01cc3aa4d691ff5a2b2fe2ae1e7b
|
7
|
+
data.tar.gz: 22024e193ba2bb80a266f5de917fc410c325f15b80c6a93305bc2132ba6a99a27c5fa2a7eecfa2f0de80eabc64bf3eb84bd91b4ccee190048a7977212a40f22d
|
data/lib/uc3-sam-sceptre.rb
CHANGED
@@ -140,8 +140,15 @@ puts args
|
|
140
140
|
# Fetch a CloudFormation stack export
|
141
141
|
def _fetch_stack_export(name:)
|
142
142
|
key = name.to_s.downcase.strip
|
143
|
+
|
144
|
+
puts "Looking for #{name}"
|
145
|
+
|
143
146
|
exports = @stack_exports.select { |exp| exp[:exporting_stack_id].include?(@prefix) && exp[:name].downcase.strip == key }
|
144
|
-
|
147
|
+
|
148
|
+
|
149
|
+
puts exports
|
150
|
+
|
151
|
+
exports.map(&:value).first
|
145
152
|
end
|
146
153
|
end
|
147
154
|
end
|