6

I deployed the serverless functions using serverless deploy functions to aws.

They are working fine and I can see them if I try to list the deployed function as shown below.

$ serverless deploy list functions
Serverless: Listing functions and their last 5 versions:
Serverless: -------------
Serverless: hello: $LATEST, 1, 2, 3, 4
Serverless: helloOne: $LATEST, 1

But I am getting no functions displayed in the list of lambda functions at AWS Console. Shouldn't they be there?

AWS Console

3
  • 2
    Do you know which region you've deployed your function to? Commented May 17, 2019 at 6:35
  • From console output I can see it's region: us-east-1 Commented May 19, 2019 at 13:52
  • Ohh, okay I changed the region from top-right menu and I am now able to see the functions. Thanks @troy. Commented May 19, 2019 at 13:55

2 Answers 2

15

It was just an issue of the region selected in the portal. My functions were deployed to us-east-1(you can see it in the deployment command output in terminal)

deployment output

So, as @troy commented, I changed the same from the menu at top-right, and I got the list.

change region

Sign up to request clarification or add additional context in comments.

Comments

0

make sure to overwrite the default region in serverless.yml file. This way you can make sure that the lambda function is deployed in your desired availability zone. Also, it would make your work easier when you want to use other services like databases with this function.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.