SSM sendcommand does not return any messages at lambda function

0

Hello there!

I'm a very beginner engineer and really new to AWS and web application systems. I have some questions about SSM send command functions.

I tried to run EC2 by lambda function using SSM sendcommand. But there are no errors and no response from sendcommand. Besides, it didn't send any log to CloudWatch. It worked from System Manager console so I think IAM policies are fine. The lambda uses javascript and AWS SDK for JavaScript v2. Please tell me how to solve this problem.. Thank you in advance for your kind help!

This is the program which I tried to run on EC2,

#!/bin/bash  
  
echo test >> test.txt  
echo test  

And this is index.js.

const AWS = require("aws-sdk");  
  
const SSM = new AWS.SSM({ region: process.env.REGION });  
const REMOTE_WORKING_DIR = '/home/ec2-user/environment/test';  
  
exports.handler = async (event) => {  
    try{  
        let command = 'sh test.sh';  
          
        let params = {  
            DocumentName: 'AWS-RunShellScript',  
            InstanceIds: \["**********"],  
            Parameters: {  
                commands: \\[command\],  
                workingDirectory: \\[REMOTE_WORKING_DIR\]  
            },  
              
            CloudWatchOutputConfig: {  
                CloudWatchOutputEnabled: true  
            },  
              
            TimeoutSeconds: 3600  
        };  
          
        console.log(params);  
          
        await SSM.sendCommand(params, function(err, data){  
            if(err){  
                console.log("error", err);  
            }else{  
                console.log("success", data);  
            }  
        });  
    }catch(e){  
        console.log("ERROR");  
        console.log(e);  
    }  
      
    return;  
};  

Edited by: yoshi09japan on Feb 7, 2021 6:09 PM

demandé il y a 3 ans840 vues
1 réponse
0

I found this was caused by not waiting the sendCommand.
This works fine.

        //Modified these lines  
        // await SSM.sendCommand(params, function(err, data){  
        //     if(err){  
        //         console.log("error", err);  
        //     }else{  
        //         console.log("success", data);  
        //     }  
        // });  
  
        //this works fine  
        const sendCommandResult = await SSM.sendCommand(params).promise();  
        console.log(sendCommandResult);  
répondu il y a 3 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions