CloudyScripts 1.6.0 → 1.6.1

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.
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ require 'rake/testtask'
12
12
 
13
13
  spec = Gem::Specification.new do |s|
14
14
  s.name = 'CloudyScripts'
15
- s.version = '1.6.0'
15
+ s.version = '1.6.1'
16
16
  s.has_rdoc = true
17
17
  s.extra_rdoc_files = ['README.rdoc', 'LICENSE']
18
18
  s.summary = 'Scripts to facilitate programming for infrastructure clouds.'
@@ -50,7 +50,10 @@ class PortRangeDetector < Ec2Script
50
50
  @context[:result][:affected_groups] = []
51
51
  @context[:security_groups]['securityGroupInfo']['item'].each() do |group_info|
52
52
  post_message("checking group '#{group_info['groupName']}'...")
53
+ next if group_info['ipPermissions'] == nil || group_info['ipPermissions']['item'] == nil
53
54
  group_info['ipPermissions']['item'].each() do |permission_info|
55
+ logger.debug("permission_info = #{permission_info.inspect}")
56
+ next unless permission_info['groups'] == nil #ignore access rights to other groups
54
57
  if permission_info['toPort'] != permission_info['fromPort']
55
58
  if permission_info['ipRanges']['item'][0]['cidrIp'] == "0.0.0.0/0"
56
59
  @context[:result][:affected_groups] << {:name => group_info['groupName'],
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: CloudyScripts
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 6
9
- - 0
10
- version: 1.6.0
9
+ - 1
10
+ version: 1.6.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matthias Jung