anyone know how to do this: 'Source = $"./wwwroot/...
# general
r
anyone know how to do this: 'Source = $"./wwwroot/{file}", In the new azure 2.1 world? getting: Cannot implicitly convert type 'string' to 'Pulumi.Input<Pulumi.AssetOrArchive>' - it really isn't clear how to create a AssetOrArchive in this auto generated code.
t
Source = new FileAsset($"./wwwroot/{file})
r
Nice - thanks.