clever-glass-42863
04/04/2022, 9:57 PMpulumi up
command into the dotnet Program itself? Are all the extra command line arguments passed through passively? Or will we need to do something else to do that; for example just rely on environment variables.
internal class Program
{
static Task<int> Main()
{
// I want to parse command-line args here, but does pulumi up pass them through?
// Or just use Environment variables?
return Deployment.RunAsync<MyCoolStack>();
}
}
billowy-army-68599
04/04/2022, 10:01 PMclever-glass-42863
04/05/2022, 2:01 PM