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

Add handler option to lambda_deploy task #52

Merged
merged 1 commit into from
Jan 23, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,16 @@ Depending on your Lambda function, you might need to increase the timeout value.
If you wish to increase this timeout set the value here.

##### options.memory
Type: `Integer`
Default value: `null`
Sets the memory assigned to the function. If null then the current setting for the function will be used. Value is in
MB and must be a multiple of 64.
Type: `Integer`
Default value: `null`

Sets the memory assigned to the function. If null then the current setting for the function will be used. Value is in MB and must be a multiple of 64.

##### options.handler
Type: `String`
Default value: `null`

Sets the handler for your lambda function. If left null, the current setting will remain unchanged.

#### Usage Examples

Expand Down
7 changes: 6 additions & 1 deletion tasks/lambda_deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ module.exports = function (grunt) {
credentialsJSON: null,
region: 'us-east-1',
timeout: null,
memory: null
memory: null,
handler: null
});

if (options.profile !== null) {
Expand Down Expand Up @@ -103,6 +104,10 @@ module.exports = function (grunt) {
configParams.MemorySize = options.memory;
}

if (options.handler !== null) {
configParams.Handler = options.handler;
}

var updateConfig = function(func_name, func_options, callback) {
if(Object.keys(func_options).length > 0) {
func_options.FunctionName = func_name;
Expand Down