nervous-systems / cljs-lambda

Utilities around deploying Clojurescript functions to AWS Lambda
The Unlicense
310 stars 34 forks source link

Function Does Not Appear In AWS Console #100

Closed JimLynchCodes closed 7 years ago

JimLynchCodes commented 7 years ago

Should I be able to see the successfully deployed function in AWS console as "work magic"? I can deploy and invoke the function, but I see no trace of it in the console.

moea commented 7 years ago

The region you have selected in the console is probably different to the region you deployed to.

http://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/getting-started.html#select-region

The function deploys by default to us-east-1, unless you specified another region in project.clj or when running aws configure.

JimLynchCodes commented 7 years ago

doh, I was looking at the wrong region. Ok, I think I'm ready to have a go at writing my own clojurescript lambda functions now. Thanks a lot for you help!