Hi, This is what is happening if you rename your ...
# help
s
Hi, This is what is happening if you rename your Cloud Formation stack name in SST. If you use this code app.stack(MyStack, { stackName: ${app.stage}-ec-website-restapi }); SST is throwing this error: ValidationError: Stack 'dev-ec-website-restapi-MyStack' does not exist. If you use this code app.stack(MyStack, { id: "ec-website-restapi" }); it names the Cloud Formation like this dev-ec-website-restapi-ec-website-restapi. The name is repeating twice. So what is the right method to name Cloud Formation Stack in SST.
f
Hey @Sakar, the ValidationError has been fixed in the latest version
1.2.25
s
@Frank Thank you, I will upgrade my SST stack and give my feed back.
@Frank Yea, i upgrade my stack, know it works fine. Thank you.