mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #481 from dylanegan/security_group_fixes
Security group fixes
This commit is contained in:
commit
3ac29eb40d
5 changed files with 27 additions and 7 deletions
|
@ -62,10 +62,10 @@ module Fog
|
|||
|
||||
if group
|
||||
group['ipPermissions'] ||= []
|
||||
if group_name && options['SourceSecurityGroupName'] && options['SourceSecurityGroupOwnerId']
|
||||
if group_name && source_group_name = options['SourceSecurityGroupName']
|
||||
['tcp', 'udp'].each do |protocol|
|
||||
group['ipPermissions'] << {
|
||||
'groups' => [{'groupName' => group_name, 'userId' => self.data[:owner_id]}],
|
||||
'groups' => [{'groupName' => source_group_name, 'userId' => (options['SourceSecurityGroupOwnerId'] || self.data[:owner_id]) }],
|
||||
'fromPort' => 1,
|
||||
'ipRanges' => [],
|
||||
'ipProtocol' => protocol,
|
||||
|
@ -73,7 +73,7 @@ module Fog
|
|||
}
|
||||
end
|
||||
group['ipPermissions'] << {
|
||||
'groups' => [{'groupName' => group_name, 'userId' => self.data[:owner_id]}],
|
||||
'groups' => [{'groupName' => source_group_name, 'userId' => (options['SourceSecurityGroupOwnerId'] || self.data[:owner_id]) }],
|
||||
'fromPort' => -1,
|
||||
'ipRanges' => [],
|
||||
'ipProtocol' => 'icmp',
|
||||
|
|
|
@ -58,10 +58,14 @@ module Fog
|
|||
response = Excon::Response.new
|
||||
group = self.data[:security_groups][group_name]
|
||||
if group
|
||||
if options['SourceSecurityGroupName'] && options['SourceSecurityGroupOwnerId']
|
||||
group['ipPermissions'].delete_if {|permission|
|
||||
permission['groups'].first['groupName'] == group_name
|
||||
}
|
||||
if source_group_name = options['SourceSecurityGroupName']
|
||||
group['ipPermissions'].delete_if do |permission|
|
||||
if source_owner_id = options['SourceSecurityGroupOwnerId']
|
||||
permission['groups'].first['groupName'] == source_group_name && permission['groups'].first['userId'] == source_owner_id
|
||||
else
|
||||
permission['groups'].first['groupName'] == source_group_name
|
||||
end
|
||||
end
|
||||
else
|
||||
ingress = group['ipPermissions'].select {|permission|
|
||||
permission['fromPort'] == options['FromPort'] &&
|
||||
|
|
|
@ -12,6 +12,21 @@ Shindo.tests("Fog::Compute[:aws] | security_group", ['aws']) do
|
|||
@group.description == " fog group desc "
|
||||
end
|
||||
|
||||
@other_group = Fog::Compute[:aws].security_groups.create(:name => 'other group', :description => 'another group')
|
||||
|
||||
test("authorize access by another security group") do
|
||||
@group.authorize_group_and_owner(@other_group.name, @other_group.owner_id)
|
||||
@group.reload
|
||||
@group.ip_permissions.size == 3
|
||||
end
|
||||
|
||||
test("revoke access from another security group") do
|
||||
@group.revoke_group_and_owner(@other_group.name, @other_group.owner_id)
|
||||
@group.reload
|
||||
@group.ip_permissions.empty?
|
||||
end
|
||||
|
||||
@other_group.destroy
|
||||
@group.destroy
|
||||
end
|
||||
end
|
||||
|
|
|
@ -12,6 +12,7 @@ Shindo.tests('Fog::Compute[:aws] | security group requests', ['aws']) do
|
|||
'ipRanges' => [],
|
||||
'toPort' => Integer,
|
||||
}],
|
||||
'ipPermissionsEgress' => [],
|
||||
'ownerId' => String
|
||||
}]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue