-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Labels
Description
Hi,
I just upgraded and am having problems with a lambda.json file that previously worked. Can you tell me what I'm doing wrong?
Here is my version
$ lambda-uploader --version
1.1.0
I'm getting this error:
lambda-uploader --publish ./ngd
⁉️ Unexpected error. Please report this traceback.
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/lambda_uploader/shell.py", line 182, in main
_execute(args)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/lambda_uploader/shell.py", line 51, in _execute
variables=args.variables)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/lambda_uploader/config.py", line 40, in __init__
self._load_config(config_file)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/lambda_uploader/config.py", line 144, in _load_config
raise Exception("%s not a valid configuration file" % lambda_file)
Exception: lambda.json not a valid configuration file
make: *** [build] Error 1
This is the content of my lambda.json file (with account redacted):
{
"name": "ngd",
"description": "Main Function. Calls all other lambdas",
"region": "us-east-1",
"handler": "ngd.handler",
"role": "arn:aws:iam::1234567890:role/audit_role",
"requirements": [],
"ignore": [
"/.*\\.pyc$"
],
"timeout": 30,
"memory": 512
}