wombat-cli 0.4.2 → 0.4.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/CHANGELOG.md +8 -1
- data/lib/wombat/output.rb +3 -3
- data/lib/wombat/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: 6545dfabe00be3f65594a04258d0a6065c497938
|
|
4
|
+
data.tar.gz: 47a9335fc3ae579c4689768a04f4ce120cc25ed5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d127444db4748f14a203026ad4253fc80dc40e5abdf054193800e442529a8520753d08db73aaf30900447ddb3f92e069b63a527106c09d0ce5ff86dff193238
|
|
7
|
+
data.tar.gz: 52e0b865d6a0c0e37e8fd7d06f1cae9ca5c29bbb59850cc663d300886672bd8c296b162bb55f99f16aaa26f6f23f41015edc98751a42efec94387dac93d82a9b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v0.4.3](https://github.com/chef-cft/wombat/tree/v0.4.3) (2017-02-23)
|
|
4
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.2...v0.4.3)
|
|
5
|
+
|
|
6
|
+
**Merged pull requests:**
|
|
7
|
+
|
|
8
|
+
- More aws namespace fixes, unblocked bjc outputs [\#304](https://github.com/chef-cft/wombat/pull/304) ([binamov](https://github.com/binamov))
|
|
9
|
+
|
|
3
10
|
## [v0.4.2](https://github.com/chef-cft/wombat/tree/v0.4.2) (2017-02-23)
|
|
4
11
|
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.1...v0.4.2)
|
|
5
12
|
|
|
6
13
|
**Merged pull requests:**
|
|
7
14
|
|
|
8
|
-
- Fixed aws namespace, unblocked bjc deploys [\#302](https://github.com/chef-cft/wombat/pull/302) [binamov](https://github.com/binamov)
|
|
15
|
+
- Fixed aws namespace, unblocked bjc deploys [\#302](https://github.com/chef-cft/wombat/pull/302) ([binamov](https://github.com/binamov))
|
|
9
16
|
|
|
10
17
|
## [v0.4.1](https://github.com/chef-cft/wombat/tree/v0.4.1) (2017-02-23)
|
|
11
18
|
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.0...v0.4.1)
|
data/lib/wombat/output.rb
CHANGED
|
@@ -28,7 +28,7 @@ module Wombat
|
|
|
28
28
|
private
|
|
29
29
|
|
|
30
30
|
def cfn_workstation_ips(stack)
|
|
31
|
-
ec2 = Aws::EC2::Resource.new
|
|
31
|
+
ec2 = ::Aws::EC2::Resource.new
|
|
32
32
|
instances = cfn_stack_instances(stack)
|
|
33
33
|
instances.each do |name, id|
|
|
34
34
|
instance = ec2.instance(id)
|
|
@@ -39,9 +39,9 @@ module Wombat
|
|
|
39
39
|
end
|
|
40
40
|
|
|
41
41
|
def cfn_stack_instances(stack)
|
|
42
|
-
cfn = Aws::CloudFormation::Client.new
|
|
42
|
+
cfn = ::Aws::CloudFormation::Client.new
|
|
43
43
|
resp = cfn.describe_stack_resources({
|
|
44
|
-
stack_name: stack
|
|
44
|
+
stack_name: stack
|
|
45
45
|
})
|
|
46
46
|
|
|
47
47
|
instances = {}
|
data/lib/wombat/version.rb
CHANGED