Dan Van Brunt
01/17/2022, 6:06 PMconsole.log({ stackName })
// eg. idx-dvb-idx
new MyStack(app, serviceName, {
stackName,
})
which results in the debug and main stacks to deploy without error (see photos)… however running yarn start --stage dvb-idx
ends up failing in the command line with
dvb-idx-idx-idx failed: The dvb-idx-idx-idx stack contains no resources.
Which looks like one too many “idx”??Frank
Dan Van Brunt
01/17/2022, 8:04 PMstackName
from StackProps fixes the issue. So must me something in the code that ignores that now.Frank
serviceName
and stackName
set to? ^ trying to reproduce the issue on my endDan Van Brunt
01/17/2022, 8:41 PM[stage]-[sst.json-name]-[sst.Stack.name]
and for now… we only ever have a single stack…. so we do….
[package.json-name]-[stage]
serviceName is just a script that pulls the package.json > name.Frank
Frank
Frank
Dan Van Brunt
01/18/2022, 6:27 PM