proud-dusk-33872
10/28/2021, 11:54 PMbillowy-army-68599
10/29/2021, 12:00 AMtrue
proud-dusk-33872
10/29/2021, 12:04 AMbillowy-army-68599
10/29/2021, 12:05 AMproud-dusk-33872
10/29/2021, 12:05 AMnew Web.WebApp()
constructor exits has the resource actually been created? Or does that occur later, and I need to use Output.Apply to ensure my dependency on it is called at the right time?billowy-army-68599
10/29/2021, 12:08 AMOutput.Apply
return, it means the Azure API has returned a value for it, which almost always means the resource has been created
There are a few edge cases which I can't recall now, but Output.Apply(value)
is what you need to useproud-dusk-33872
10/29/2021, 12:08 AMWebApp.Name.Apply(x => {})
)billowy-army-68599
10/29/2021, 12:12 AMproud-dusk-33872
10/29/2021, 12:25 AM