# File lib/fog/compute/models/aws/security_group.rb, line 41
        def authorize_group_and_owner(group, owner)
          requires :name

          connection.authorize_security_group_ingress(
            name,
            'SourceSecurityGroupName'     => group,
            'SourceSecurityGroupOwnerId'  => owner
          )
        end