mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #701 from coliver/security_groups_parser_fix
Security groups parser fix
This commit is contained in:
commit
c0fe5077a4
1 changed files with 2 additions and 2 deletions
|
@ -40,9 +40,9 @@ module Fog
|
||||||
end
|
end
|
||||||
when 'groups'
|
when 'groups'
|
||||||
@in_groups = false
|
@in_groups = false
|
||||||
when 'groupDescription', 'ownerId', 'groupId', 'vpcId'
|
when 'groupDescription', 'ownerId', 'vpcId'
|
||||||
@security_group[name] = value
|
@security_group[name] = value
|
||||||
when 'groupName'
|
when 'groupId','groupName'
|
||||||
if @in_groups
|
if @in_groups
|
||||||
@group[name] = value
|
@group[name] = value
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue