Skip to content

Lambda function will skip inline function. #637

@manavalan619

Description

@manavalan619

Hi all, Currently I am using serverless for deploying my code into AWS Lambda function to stop the AWS code deploy latest deployments. So I am using AWS node SDK for this and verified my code locally by using the command sls offline i works good. While deployed on AWS, the Lambda function will skip the sdk function.

Anyone, please help to resolve the problem. Here my code
`var AWS = require('aws-sdk');

AWS.config = new AWS.Config();
AWS.config.accessKeyId = "access_key";
AWS.config.secretAccessKey = "secret_key";
AWS.config.region = "region";
var codedeploy = new AWS.CodeDeploy();
module.exports.hello = async (event) => {
var params = {
applicationName: 'application_name',
deploymentGroupName: "Deployment group name",
includeOnlyStatuses: ['InProgress', 'Succeeded'],
};
codedeploy.listDeployments(params, (err, data) => {
console.log('------------ Going to list deployment----------------')
let deployment_id = data.deployments[0]
if (err) console.log(err, err.stack); // an error occurred

else {
  var params = {
    deploymentId: deployment_id, /* required */
    autoRollbackEnabled: true || false
  };
}         // successful response

});
};`

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions