https://pulumi.com logo
Title
s

stocky-spoon-28903

06/26/2018, 8:13 AM
Is there a reason in principle that given this program: https://gist.github.com/jen20/27ed06a57d2a60af2f909cb3882f5277 the subnets can’t be created in parallel?
b

big-piano-35669

06/26/2018, 2:34 PM
We should definitely be able to create in parallel. We don't yet fully parallelize CRUD operations based on the DAG, however we now do track proper dependency information correctly (this has been tough to figure out in a real language, but the promise-like
Output<T>
abstraction now gives us everything we need here). @incalculable-sundown-82514 has been chipping away at landing this for real, and https://github.com/pulumi/pulumi/issues/106 tracks the final steps.
P. S. nice uses of
map
🙂
s

stocky-spoon-28903

06/26/2018, 3:04 PM
👍, good to know it’s coming