Skip to content

Commit

Permalink
Merge pull request #15 from xpouyat/master
Browse files Browse the repository at this point in the history
Arm update
  • Loading branch information
xpouyat committed Nov 18, 2020
2 parents cfe86f2 + ee4c5d8 commit da432ea
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions azuredeploy.json
Expand Up @@ -101,7 +101,7 @@
{
"type": "Microsoft.Storage/storageAccounts",
"name": "[variables('storageAccountName')]",
"apiVersion": "2016-01-01",
"apiVersion": "2019-06-01",
"location": "[resourceGroup().location]",
"comments": "This storage account is used by the functions.",
"sku": {
Expand Down Expand Up @@ -136,7 +136,7 @@
],
"kind": "functionapp",
"properties": {
"serverFarmId": "[variables('hostingPlanName')]",
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]",
"siteConfig": {
"appSettings": [
{
Expand Down Expand Up @@ -229,8 +229,7 @@
"apiVersion": "2019-08-01",
"comments": "This section sets up source control for continuous integration on the Function app and pulls the source code down from Github.",
"dependsOn": [
"[resourceId('Microsoft.Web/sites', variables('functionsAppName'))]",
"[concat('Microsoft.Web/sites/', variables('functionsAppName'), '/config/appsettings')]"
"[resourceId('Microsoft.Web/Sites', variables('functionsAppName'))]"
],
"properties": {
"repoUrl": "[parameters('sourceCodeRepositoryURL')]",
Expand Down

0 comments on commit da432ea

Please sign in to comment.