Julien Goux
02/23/2021, 10:44 AMJulien Goux
02/23/2021, 10:48 AMPål Brattberg
02/23/2021, 3:42 PMErick Ho
02/24/2021, 12:38 AMstackname
' to deploy a specific stackBill
02/24/2021, 12:54 AMPål Brattberg
02/25/2021, 1:36 PMCamilo Rios
02/26/2021, 3:09 PMApiGatewayRestApi - 1 validation error detected: Value null at 'createRestApiInput.name' failed to satisfy constraint: Member must not be null
Has anyone of you seeing a similar error?Andreas
02/28/2021, 12:31 AMMAURICIO VALDIVIA MONZON
03/01/2021, 5:56 PMRoger Rajaratnam
03/01/2021, 6:17 PMDavid Marquez
03/02/2021, 9:19 AMsst.json
stage becomes irrelevant (or does it?).
But my issue is rather on merging changes between the dev and dev1 branches where we're overriding the sst.json
and bouncing back and forth between dev
and dev1
. How do I go about this or is there a better approach to this? Perhaps more insight as well into how SEED manages the sst.json file would be great.
{
"name": "beta-courier",
"stage": "dev",
"region": "ap-southeast-1",
"lint": true
}
Dries Hooghe
03/02/2021, 1:11 PMA version for this Lambda function exists
issue, which is caused by deploying functions that are not changed. However, since our project is setup as a monorepo with Lerna and Yarn workspaces, and we don't want to tag each service separately, we have no way of telling which services to skip while deploying. Is there any way to avoid this? The Common Serverless Errors documentation suggests deploying a dummy change, but at the rate we get this issue, it has become quite a hassle.Vignesh Rajagopalan
03/03/2021, 12:02 PMMike McCall
03/03/2021, 1:21 PMTypeError: Cannot read property 'type' of undefined
at returnLambdaResponse (/Users/mike/shoplifted-apps/auto-tags/node_modules/@serverless-stack/cli/scripts/start.js:1128:24)
at ChildProcess.<anonymous> (/Users/mike/shoplifted-apps/auto-tags/node_modules/@serverless-stack/cli/scripts/start.js:1165:5)
at ChildProcess.emit (events.js:315:20)
at ChildProcess.EventEmitter.emit (domain.js:483:12)
at Process.ChildProcess._handle.onexit (internal/child_process.js:275:12)
This is happening in live lambda dev. It happens inside an iframe as a shopify app. If I hit the same endpoint outside of the iframe it works. If I deploy the api it also works. Only fails in live lambda.Akos
03/03/2021, 7:45 PMserverless.yml
everywhere and not sst.json
. Does anyone have an example with SST? Or am I just overthinking it and it will just work fine if I just use SST in each service
?Sione
03/04/2021, 4:11 AM/lib
dir. Now if that's the case then there's no need for monorepo then, right? for each service to have its own package.json
or does it still make sense for each service to have it's own package.json
with lerna to control hoisting? Also, I'm using seed and I haven't deploy my sst app yet. But when adding a service on seed, is it looking for the service dir still or the stack file in /lib
dir? Overall, I think an example of sst app that spans multiple services would be very helpful.Tom Hoad
03/04/2021, 9:56 AMs3
=== s3:*
)? And if so, to add more granular permissions per action, I need to add a full policy statement - is this correct?Andreas
03/04/2021, 11:55 PMRESPONSE null
when querying for the schema. No other errors. Any ideas what I'm missing here?
Here's a basic example using it with the CDK: https://github.com/tlakomy/cdk-graphql-lambda-exampleRoss Coundon
03/05/2021, 12:41 PMnpm run build
we have a separate NPM script that calls the Javascript file say
npm run config
which actually does:
node buildClientApp.js
buildClientApp.js retrieves the config using Octokit from the provided repo and then runs npm run build on the combined config and core code. This output is then what is deployed.
Does anyone have any pointers on how this could be achieved in Seed for the backend lambda code?Ross Coundon
03/06/2021, 9:01 AMgio
03/07/2021, 9:48 AMRupert Smith
03/07/2021, 1:14 PM$ npx sst build
Preparing your SST app
Transpiling source
Synthesizing CDK
[Error at /dev-eco-server-build-job] You are not authorized to perform this operation.
The code is:
const ec2 = require("@aws-cdk/aws-ec2");
export default class BuildJobStack extends sst.Stack {
constructor(scope, id, props) {
super(scope, id, props);
const vpc = new ec2.Vpc(this, "eco-vpc", {
maxAzs: 1
});
Note, this isn't even deploying it, just running build
on command line. Any ideas?Loup Topalian
03/08/2021, 11:55 AMLoup Topalian
03/08/2021, 11:57 AMssm.eu-central-1:/${_app_.stage}/COGNITO_CLIENT_ID
, );` ?Loup Topalian
03/08/2021, 11:59 AMSeth Geoghegan
03/09/2021, 5:51 PMcustomDomain
setting on the API ConstructArtem Kalantai
03/10/2021, 9:55 AMMarcelo Olivas
03/10/2021, 2:48 PMAkos
03/10/2021, 3:45 PMLoup Topalian
03/11/2021, 6:51 PM