This message was deleted.
# general
s
This message was deleted.
l
The loop isn't relevant to deployment. All your code does is set things up for deployment; the engine does all the deployment later, after your code has done its thing. The default value for the
--parallel
option for up is unbounded, so they should all be deployment in parallel.
How are you determining that deployment is happening sequentially? The Pulumi graph output would be a reasonable indicator. Another option would be to use
pulumi.log
or
console.log
in an
apply()
on some output of the resource, like the ARN. If the logs are unordered then you can be reasonably confident that the resources are being deployed asynchronously.
a
the logs in the GHA runner, and what I can see happening in AWS console tell me its happening sequentially
l
Don't know then, sorry.