From 83daf591a919de62da27fb00cbe2dd2cdf127fbe Mon Sep 17 00:00:00 2001 From: Smith Date: Mon, 1 Aug 2022 09:42:10 +0200 Subject: [PATCH] upd. azure template * use basic B1 plan * always on: ON --- azuredeploy.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/azuredeploy.json b/azuredeploy.json index f547408..f07280a 100644 --- a/azuredeploy.json +++ b/azuredeploy.json @@ -68,8 +68,8 @@ } }, "variables": { - "sku": "Free", - "skuCode": "F1", + "sku": "Basic", + "skuCode": "B1", "linuxFxVersion": "NODE|lts", "hostingPlanName": "[format('AppServicePlan-{0}', parameters('siteName'))]" }, @@ -101,7 +101,8 @@ "properties": { "serverFarmId": "[variables('hostingPlanName')]", "siteConfig": { - "linuxFxVersion": "[variables('linuxFxVersion')]" + "linuxFxVersion": "[variables('linuxFxVersion')]", + "AlwaysOn": true } }, "resources": [