full-dress-10026
05/16/2019, 7:52 PMwhite-balloon-205
full-dress-10026
05/16/2019, 8:13 PMcolossal-room-15708
05/16/2019, 8:17 PMfull-dress-10026
05/16/2019, 8:21 PMconst appPlan = new azure.appservice.Plan("fib-plan", {
resourceGroupName: resourceGroup.name,
kind: "Linux",
name: stackName,
sku: {
size: "S1",
tier: "Standard",
capacity: 1
},
});
const fibApp = new azure.appservice.AppService("fib-app-service", {
name: stackName,
resourceGroupName: resourceGroup.name,
appServicePlanId: appPlan.id,
appSettings: {
WEBSITES_PORT: 8080
},
siteConfig: {
linuxFxVersion: `DOCKER|${fibImage.imageName}`
}
});
colossal-room-15708
05/16/2019, 8:23 PMfull-dress-10026
05/16/2019, 8:34 PMaz webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app name> --deployment-container-image-name microsoft/azure-appservices-go-quickstart
There does not appear to be a way to pass --deployment-container-image-name
to Pulumi.colossal-room-15708
05/16/2019, 9:05 PMfull-dress-10026
05/16/2019, 9:05 PMapp,linux,container
. My Pulumi written app has the type app
. Not sure how to get the correct Type.az webapp config show
for the example web service and the Pulumi created one and there is nothing significant. There must be some magic happening elsewhere.reserved = true
in your app plan. Nowhere in the docs does it say this.tall-librarian-49374
05/17/2019, 6:21 AMfew-dog-41530
05/17/2019, 10:49 AMfull-dress-10026
05/17/2019, 3:18 PMcolossal-room-15708
05/19/2019, 5:47 AMreserved
bit https://www.terraform.io/docs/providers/azurerm/r/app_service_plan.html#kind