Will Pulumi always provision cloud resources at th...
# aws
s
Will Pulumi always provision cloud resources at the maximum simultaneous number possible? Is the ceiling on parallelism inter-resource dependencies or anything else? Thank you in advance 🙂
w
By default Pulumi applies “infinite parallelism” where it will do as much as the dependency graph allows in parallel. You can override this with the
-p
flag to limit the number of resources Pulumi will attempt to update in parallel. https://www.pulumi.com/docs/reference/cli/pulumi_up/
s
Awesome thank you!!! 🙂