# File lib/fog/aws/models/compute/security_group.rb, line 42
        def authorize_group_and_owner(group, owner = nil)
          Fog::Logger.deprecation("authorize_group_and_ownder is deprecated, use authorize_port_range with :group option instead")

          requires_one :name, :group_id

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