Pavan Kumar
12/03/2021, 6:14 AMnew StackA();
new StackB();
new StackC();
new StackD();
Scenario 1: Deploy all the stacks in parallel.
Scenario 2: Deploy StackA and StackB in parallel and StackC and StackD depends on StackA and StackB hence deploy StackC and StackD in parallel, but in second stage?Frank
Frank
Pavan Kumar
12/03/2021, 8:03 AMAdrián Mouly
12/03/2021, 12:27 PMthis.stack1.addDependency(this.stack2);Adrián Mouly
12/03/2021, 12:27 PMPavan Kumar
12/07/2021, 6:51 AMconst stackA = new StackA(scope, "StackA");
//
new StackB(scope, "StackB", { url: stackA.url });
Does both stackA and stackB deployed parallelly? Or StackB waits till StackA gets deployed so that it can get the url?Frank
Frank