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

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