something like `tf plan -out x` and then `tf apply...
# general
a
something like
tf plan -out x
and then
tf apply x
b
There is currently no persistent form of a preview. Well, that's kind of a lie, because to support some advanced workflow capabilities, @microscopic-florist-22719 and @colossal-beach-47527 have begun persisting previews as regular checkpoints. But probably not in the way you want here. I'd love to hear more about your use case here. Is it that you want to be safe and ensure our update doesn't diverge from the original preview plan?
a
Sorry for the delay Joe. It's not something I really need but it's a classical workflow for deployment tools in CI/CD pipelines.
Like with tf you can
tf plan -out x
in a package stage , review the output manually if you want and deploy it later
You can also do it with the serverless framework with
sls package
(its buggy btw 😆 )
So it's more a feature parity thing I think.