lib/fog/aws/requests/ec2/describe_security_groups.rb in fog-0.0.41 vs lib/fog/aws/requests/ec2/describe_security_groups.rb in fog-0.0.42

- old
+ new

@@ -25,10 +25,10 @@ # * 'ipRanges'<~Array>: # * 'cidrIp'<~String> - CIDR range # * 'toPort'<~Integer> - End of port range (or -1 for ICMP wildcard) # * 'ownerId'<~String> - AWS Access Key Id of the owner of the security group def describe_security_groups(group_name = []) - params = indexed_params('GroupName', group_name) + params = AWS.indexed_param('GroupName', group_name) request({ 'Action' => 'DescribeSecurityGroups', }.merge!(params), Fog::Parsers::AWS::EC2::DescribeSecurityGroups.new) end