adventurous-garage-59192
11/21/2019, 2:49 AMwhite-balloon-205
tall-librarian-49374
11/21/2019, 4:55 AMadventurous-garage-59192
11/21/2019, 5:01 AMtall-librarian-49374
11/21/2019, 5:02 AMadventurous-garage-59192
11/21/2019, 5:18 AMvar appServiceName = $"...";
var app = new AppService(appServiceName, new AppServiceArgs
{
//TODO replace hardcoded names with values from StackReference when supported
Name = appServiceName,
ResourceGroupName = "....",
AppServicePlanId = "....",
//TODO uncomment when terraform bug is fixed
/*SiteConfig = new AppServiceSiteConfigArgs()
{
Http2Enabled = true,
AlwaysOn = false
},*/
AppSettings =
{
{ "WEBSITE_RUN_FROM_PACKAGE", "1" }
},
ConnectionStrings =
{
new AppServiceConnectionStringsArgs
{
Name = "Postgres",
Type = "Custom",
Value = "....."
}
}
}, new CustomResourceOptions {DeleteBeforeReplace = true});
tall-librarian-49374
11/21/2019, 5:26 AMPulumi
nuget package, do you?adventurous-garage-59192
11/21/2019, 5:33 AMtall-librarian-49374
11/21/2019, 5:51 AMadventurous-garage-59192
12/02/2019, 2:34 AMtall-librarian-49374
12/02/2019, 7:38 AMadventurous-garage-59192
12/02/2019, 7:49 AMtall-librarian-49374
12/02/2019, 10:53 AMadventurous-garage-59192
12/02/2019, 12:07 PMtall-librarian-49374
12/02/2019, 12:08 PMadventurous-garage-59192
12/03/2019, 1:19 AMlemon-spoon-91807
12/03/2019, 2:02 AMadventurous-garage-59192
12/03/2019, 2:54 AMpulumi up
again seems to have (finally) used the latest pulumi dependency and it passed without issue. Everything appears fixed now. Apologies for wasting your time, thanks for your work.