Noob Question: When I update SST (and therefore CD...
# help
d
Noob Question: When I update SST (and therefore CDK to v2, so all my functions get re-deployed with new cloud formation? Or are the cloud formation basically the same, just how it is constructed is different.
f
CDK v2 changed how the assets are named in the template, but the code is still the same.
You shouldn’t notice any difference after deploying
d
So
AWS:LambdaFunction:abc-123
might become
AWS:LambdaFunction:v2-abc-123
f
That should remain the same, the template should be the same except the
Code
property for
AWS::Lambda::Function
resources are slightly different.
d
gotcha. Thanks for the clarity check