1,242 questions
0
votes
0
answers
33
views
How to reference existing Terraform-managed VPC in SST without redeploying?
I’m running into an issue when deploying with sst deploy --stage dev.
The error says:
There have been some minor changes to the "Vpc" component that's being referenced by "MyVPC".
...
0
votes
1
answer
79
views
NestJs project fails when it is uploaded to AWS
Locally my nestjs backend project works fine, the problem is when I uploaded it to a aws lambda, I get this error:
2025-05-30T02:20:27.823Z cd8132bf-b0fc-4e36-94bd-911a35996ed4 INFO TypeError:...
0
votes
0
answers
42
views
unable to merge mappings in serverless.yaml file
I have a serverless.yaml file using the serverless framework. I have it including a models.yaml file since it is over 1,000 lines.it gives me an error that it is unable to merge. I have tried multiple ...
-3
votes
3
answers
147
views
Serverless how to create a function that runs for over 30 seconds on AWS?
everyone,
I am aware that a AWS lambda is only allowed to run for 30 seconds. But I am working on a feature that takes around 2 minutes to finish processing.
In fact I see the end of the request on ...
0
votes
1
answer
67
views
How to deploy a model trained in AWS CANVAS using serverless inference?
As far as I know, AWS Sagemaker supports two approaches for the model inference: Provisioned and Serverless. This is specified in the endpoint configuration. My question is that when I train a model ...
0
votes
1
answer
362
views
How to restrict AWS Serverless ElastiCache access by the default user
I am using AWS Serverless ElastiCache (Redis) with Password authentication. I have created a new user with a password and attached specific access permissions, but the default user (default) seems to ...
4
votes
0
answers
367
views
Issues with serverless-webpack and upgrading to Serverless Framework v4.4.6
We are using serverless-webpack at my company, and we're planning to upgrade from Serverless Framework v3.39 to v4.4.6. (The motivation for this upgrade is outside the scope of this question.)
...
1
vote
0
answers
82
views
My AWS Serverless.template keeps getting over-written
I'm working in VS2022 with the AWS Toolkit installed.
On one particular project the serverless.template file is overwritten after I "Publish to AWS Lambda". All of my functions in the ...
0
votes
1
answer
114
views
$user->createToken('laravel')->accessToken; is returns "message": "Invalid key supplied"
In My AWS ec2 ubuntu server the login is working properly it gives user login token.
I have moved the files to serverless aws apllication with same ec2 mysql database credentials.
All other apis are ...
2
votes
0
answers
1k
views
Migrating from .Net 6 to .Net 8
I am trying to upgrade my two AWS based Dotnet projects from .net 6 to .net 8 but I am facing same problem in both of those project. One of the project is using CDK and another one is based on SAM.
I ...
-4
votes
1
answer
161
views
Serverless S3 Sync is invalid
I was getting started with serverless everything was fine until i used S3Sync to upload data to my bucket, this is my yml file i also installed serverless-s3-sync plugin using yarn before using sls ...
0
votes
1
answer
163
views
Serverless WebSocket Service for Real-Time Stock Data Processing
I'm looking for a serverless service that can be utilized as a socket API backend client. For example, if I have a stock-based socket API that provides real-time data on stock LTP (Last Traded Price), ...
2
votes
0
answers
163
views
AWS Lambda Function URL error (failed)net::ERR_NAME_NOT_RESOLVED
I am using function url for calling lambda function. Sometime on calling AWS lambda function URL, getting error (failed)net::ERR_NAME_NOT_RESOLVED while using mobile data. I have checked this for ...
6
votes
2
answers
2k
views
Serverless lambda deploy with container image, getting The image manifest or layer media type for the source image not supported error
I'm deploying a simple python function using serverless deploy , I was able to do so earlier but when I updated my docker, I started getting this error:
The image manifest or layer media type for the ...
1
vote
1
answer
376
views
AWS Event Bridge rule match on two specific directories from the same S3 Bucket
I want an Event Bridge rule to match on two different directories (prefixes) of the same S3 Bucket when a file is uploaded to any of the directories.
If I put two prefix objects under detail.object....
1
vote
1
answer
331
views
Spring Boot-amazon aws server handler is giving java.lang.ClassCastException:
Hello I am trying to deploy my spring boot application to aws lambda. This was happenig in my main repo and I stripped to very basic set up still its giving the ClassCastException. I tried running the ...
2
votes
0
answers
68
views
Unable to deploy lambda script with webpack in Serverless architecture AWS
I am very new to learning Serverless and nod.js. I am trying to deploy a lambda script by compressing with webpack but getting following error:
No matching handler found for 'lambdas/getProperties' ...
0
votes
1
answer
512
views
Mocking DynamoDB in an AWS Lambda Unit Test
I have an AWS Serverless API that performs CRUD operations on a DynamoDB table. The functions work as expected, but I am having trouble trying to add unit tests to support our CI/CD pipeline. The ...
1
vote
1
answer
405
views
Encountering Deployment Error with AWS CDK: Despite Bootstrapping
I encounter an issue when deploy cdk app using command 'cdk deploy'. The error is following.
✨ Synthesis time: 8.02s
NewlamStack: start: Building ...
2
votes
0
answers
405
views
Preflight Request throwing an CORS error on AWS API Gateway
I am learning about nuances of AWS hosting.
I have relatively small app that works well on localhost, and in combination with Postman.
My setup is:
S3 hosted React app - with Cloudfront distribution ...
1
vote
0
answers
99
views
Download serverless application from AWS
I have just joined a new project developed entirely on AWS, the project consists of several APIs with Lambda functions grouped in applications.
The thing is that the developer who was in charge of ...
0
votes
1
answer
828
views
How to make service idempotent to eventbridge
I have an eventbridge rule which is configured to trigger a lambda which calls an api of my app at some cron intervals (let's say every 1 hour). Eventbridge guarantees "at least once" ...
0
votes
0
answers
202
views
Why does Spring Security not work with aws-serverless-web-native-app?
Trying to add security filters to my spring native application which was gonna deploy on aws lambda. So took a help of sample example of pet-store-native(spring boot + graalvm + aws serverless ...
4
votes
1
answer
3k
views
Why AWS OpenSearch service returns 404 when I try to reindex?
I have an AWS OpenSearch Serverless collection with one index called index1. It has some data in it that I need to reindex. I interact with the collection using the OpenSearch Dev Tools, through the ...
1
vote
0
answers
653
views
Can't connect to ElastiCache Redis
I have a small Rails 7.0 application that uses Redis as a storage from which data is fetched to be processed later in the background. The application communicates with it through ActiveJob APIs which ...