For support requests please search or create posts on Serverless Forum: https://forum.serverless.com
carlosandrebp on master
upload email icon (compare)
carlosandrebp on master
Icons update (compare)
carlosandrebp on master
updates animations (compare)
andrepiresbp on master
Updates (compare)
andrepiresbp on master
Update (compare)
post
is not working user-xxx:
events:
- http:
path: xxx
method: post
cors: true
private: true
- http:
path: xxx/{sub_id}
method: get
cors: true
private: true
- http:
path: xxx/{sub_id}
method: post
cors: true
private: true
serverless-offline
with node 12...
Hey guys!
I'm having a problem when I try to run the start step function in another lambda function.
my code:
await stepfunctions.startExecution(params).promise();
But, he response nothing.
I've already increased the lambda execution time, but it's still not running.
@/all
Hi all,
We're doing a free Webinar on October 5th on Enabling Serverless Teams (AKA how to standardize serverless development amidst a growing group of developers).
You can register here: https://app.livestorm.co/serverless/enabling-serverless-teams
Has anyone had this error when trying to run a state machine?
{
errno: 'ETIMEDOUT',
code: 'TimeoutError',
syscall: 'connect',
port: 443,
time: 2021-09-28T20:22:32.335Z,
region: 'us-east-2',
hostname: 'states.us-east-2.amazonaws.com',
retryable: true
}
Hi everyone - How can I try out the new AWS Graviton2 Processor?
npm audit fix
i wonder if anyone else is facing this issue and if there's a work around for this! Thanks https://snyk.io/test/github/serverless/serverless
@/all
https://www.serverless.com/blog/introducing-serverless-cloud-public-preview
Let us know what you think!
BlobsResource:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId:
Ref: ApiGatewayRestApi
ParentId:
Fn::GetAtt:
- ApiGatewayRestApi
- RootResourceId
PathPart: '{blob_id}'
when I change this Ref: ApiGatewayRestApi to Ref: blobs it says undefined blobs resource
aws
command line, but sls deploy
complains that the profile isn't configured. Are such role-based profiles supported by serverless
at all?
Hi am running into an issue where my env vars aren't being expanded when my cloud formation json is being created:
service: ${env:FOO, "foo-default"}${env:BAR, ""}
...
apiGateway:
name: ${env:FOO, "foo-default"}${env:BAR, ""}
...
provider:
stackName: ${self:service}
When I generate the cloud formation json it's creating these values:
"Export": {
"Name": "sls-${env:FOO, \"foo-default\"}${env:BAR, \"\"}-dev"
},
Basically It's treating the env vars as plain text. Should I report this as a bug or am I doing something wrong?
op@os-MacBook-Air resolute-serverless-backend % serverless
Serverless Error ----------------------------------------
Cannot reliably resolve "env" variables due to resolution conflict.
Environment variable "STAGE" which influences resolution of ".env" file were found to be defined in resolved ".env" file.DOTENV_ENV_VAR_RESOLUTION_CONFLICT
Get Support --------------------------------------------
Docs: docs.serverless.com
Bugs: github.com/serverless/serverless/issues
Issues: forum.serverless.com
Your Environment Information ---------------------------
Operating System: darwin
Node Version: 17.0.1
Framework Version: 2.66.1
Plugin Version: 5.5.1
SDK Version: 4.3.0
Components Version: 3.18.0
op@os-MacBook-Air resolute-serverless-backend % sls -v
Serverless: Running "serverless" installed locally (in service node_modules)
Framework Core: 2.66.1 (local)
Plugin: 5.5.1
SDK: 4.3.0
Components: 3.18.0
Hello. My typescript project with serverless component is giving the following error:
23s › Serverless › The operation cannot be performed at this time. An update is in progress for resource:...
I noticed that the error started to display without changing anything in the source code.
And doing some commit hash reversals, I noticed it's showing this message because my project is in typescript. If I revert the settings to be a javascript project, it works just fine.
can anyone help?
I've started running into an issue in which attempting to deploy produces this error:
Unzipped size must be smaller than 104060999 bytes
Part of the issue is the fact that serverless adds the full aws-sdk, along with all client libraries which totals 68MB. So I have the dynamodb client js code (plus dozens of others), even though I don't use it.
Is there a way to fix that? I need to reduce the size of my package