This message was deleted.
# general
s
This message was deleted.
a
Apologies if it's wrong channel ๐Ÿ™‚
l
Hello @adamant-football-558, thanks for the kind words on Pulumi! Regarding the
--parallel
flag, the default value is
unlimited
which means we try to perform as much as possible concurrently. If you set a value yourself, you are actually reducing the number of resources our engine will provision concurrently. When resources do not have any dependencies on each other, Pulumi will provision these concurrently. When you pass the output of one resource as an input to another resource, you create a dependency and Pulumi will provision the first resource before the other resource. The
dependsOn
resource option makes a similar dependency.
As long as you limit mentioned dependencies then the introduction of components wonโ€™t change much on what Pulumi can provision concurrently.
a
Hey @limited-rainbow-51650, thanks for the response.
Regarding the --parallel flag, the default value is unlimited  which means we try to perform as much as possible concurrently. If you set a value yourself, you are actually reducing the number of resources our engine will provision concurrently.
-> so no change here ๐Ÿ™‚
When resources do not have any dependencies on each other, Pulumi will provision these concurrently. When you pass the output of one resource as an input to another resource, you create a dependency and Pulumi will provision the first resource before the other resource. The dependsOn resource option makes a similar dependency.
-> here I might work on the diagram then ๐Ÿ™‚ thanks again