JS do nó da AWS com solicitação

Não tenho certeza do que está errado aqui, mas meu lambda abaixo no nó js não funciona

'use strict';
exports.handler = function (event, context) {
    try {

    var req = require('request');
    var headers = { 'User-Agent': 'Super Agent/0.0.1' };

    var options = {
        url: 'http://google.com',
        method: 'GET',
        headers: headers
    };

    req(options, function (error, response, body) {
        console.log(body);
    });

A descrição acima está carregando o módulo corretamente, mas ele não chega ao console.log (body) por algum motivo. Alguém tem uma ideia?

questionAnswers(1)

yourAnswerToTheQuestion