From ba2d2dd3e042d6c341a9dff10aa236bc016962b0 Mon Sep 17 00:00:00 2001 From: doapp-ryanp Date: Thu, 29 Oct 2015 13:43:17 -0500 Subject: [PATCH] remove l from cf lambda name --- lib/defaults/actions/ModuleCreate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/defaults/actions/ModuleCreate.js b/lib/defaults/actions/ModuleCreate.js index 09aea97b2..0b843b5fc 100644 --- a/lib/defaults/actions/ModuleCreate.js +++ b/lib/defaults/actions/ModuleCreate.js @@ -160,7 +160,7 @@ usage: jaws module create `, let actionTemplateJson = JawsUtils.readAndParseJsonSync(path.join(this._templatesDir, 'lambda.awsm.json')); //We prefix with an l to make sure the CloudFormation resource map index is unique - actionTemplateJson.name = 'l' + this._resource.charAt(0).toUpperCase() + this._resource.slice(1) + this._action.charAt(0).toUpperCase() + this._action.slice(1); + actionTemplateJson.name = this._resource.charAt(0).toUpperCase() + this._resource.slice(1) + this._action.charAt(0).toUpperCase() + this._action.slice(1); if (this._createLambda) { actionTemplateJson.cloudFormation.lambda.Function.Properties.Runtime = this._runtime;