Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lambda function will skip inline function. #637

Open
manavalan619 opened this issue Jul 30, 2021 · 1 comment
Open

Lambda function will skip inline function. #637

manavalan619 opened this issue Jul 30, 2021 · 1 comment

Comments

@manavalan619
Copy link

manavalan619 commented Jul 30, 2021

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

});
};`

@mnapoli
Copy link
Contributor

mnapoli commented Jul 30, 2021

Hi, this is a repository containing example applications. If you are not reporting a bug in the examples, you may be better off asking support questions at https://forum.serverless.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants