Skip to content

Commit

Permalink
Removed environment variables (#12)
Browse files Browse the repository at this point in the history
Environment variables that are manually set in AWS console resets for every deploy if the aws-lambda-tools-defaults.json file contains environment variables.
  • Loading branch information
Charbely authored and Kralizek committed Sep 6, 2019
1 parent c77c5df commit 520341f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
"function-runtime": "dotnetcore2.0",
"function-memory-size": 128,
"function-timeout": 30,
"function-handler": "EmptyEventFunction::EmptyEventFunction.Function::FunctionHandlerAsync",
"environment-variables": "Environment=;"
"function-handler": "EmptyEventFunction::EmptyEventFunction.Function::FunctionHandlerAsync"
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
"function-runtime": "dotnetcore2.1",
"function-memory-size": 128,
"function-timeout": 30,
"function-handler": "EmptyRequestResponseFunction::EmptyRequestResponseFunction.Function::FunctionHandlerAsync",
"environment-variables": "Environment=;"
"function-handler": "EmptyRequestResponseFunction::EmptyRequestResponseFunction.Function::FunctionHandlerAsync"
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
"function-runtime": "dotnetcore2.1",
"function-memory-size": 128,
"function-timeout": 30,
"function-handler": "RichEventFunction::RichEventFunction.Function::FunctionHandlerAsync",
"environment-variables": "Environment=;"
"function-handler": "RichEventFunction::RichEventFunction.Function::FunctionHandlerAsync"
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
"function-runtime": "dotnetcore2.1",
"function-memory-size": 128,
"function-timeout": 30,
"function-handler": "RichRequestResponseFunction::RichRequestResponseFunction.Function::FunctionHandlerAsync",
"environment-variables": "Environment=;"
"function-handler": "RichRequestResponseFunction::RichRequestResponseFunction.Function::FunctionHandlerAsync"
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
"function-runtime": "dotnetcore2.1",
"function-memory-size": 128,
"function-timeout": 30,
"function-handler": "SnsEventFunction::SnsEventFunction.Function::FunctionHandlerAsync",
"environment-variables": "Environment=;"
"function-handler": "SnsEventFunction::SnsEventFunction.Function::FunctionHandlerAsync"
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
"function-runtime": "dotnetcore2.1",
"function-memory-size": 128,
"function-timeout": 30,
"function-handler": "SqsEventFunction::SqsEventFunction.Function::FunctionHandlerAsync",
"environment-variables": "Environment=;"
"function-handler": "SqsEventFunction::SqsEventFunction.Function::FunctionHandlerAsync"
}

0 comments on commit 520341f

Please sign in to comment.