Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why deployed serverless functions not displayed in list of lambda functions in AWS console?

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

like image 838
Sanket Patel Avatar asked Jan 01 '23 23:01

Sanket Patel


1 Answers

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

like image 73
Sanket Patel Avatar answered Jan 05 '23 19:01

Sanket Patel