From 17291e90f1df2673f34ad836c713fb7b46af8ff0 Mon Sep 17 00:00:00 2001 From: Ale Martinez Date: Thu, 2 Feb 2023 12:52:12 -0600 Subject: [PATCH] Update azuredeploy.json The deployment will fail if we use a free tier. I changed it to S1 --- azuredeploy.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azuredeploy.json b/azuredeploy.json index 55c4838..95dee4d 100644 --- a/azuredeploy.json +++ b/azuredeploy.json @@ -11,7 +11,7 @@ }, "hostingPlanSku": { "type": "string", - "defaultValue": "F1", + "defaultValue": "S1", "allowedValues": [ "F1", "D1", @@ -286,4 +286,4 @@ "value": "[listKeys(concat(resourceId('Microsoft.Web/sites', variables('functionAppName')), '/host/default/'), '2019-08-01').functionKeys.default]" } } -} \ No newline at end of file +}