when you use esc run, how long does the environmen...
# esc
m
when you use esc run, how long does the environment stay available? if the command that is run restarts itself does it lose the environment data from pulumi?
e
When the
esc run
command terminates then the environment variables are no longer available. If the command you are running restarts, but it is still running under the esc run context, it will have access. Please note that some short-lived cloud provider tokens may expire (you can configure that duration up to a max value).
m
Thanks.