Skip to content

Commit

Permalink
fix to deployment template.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkp committed Jan 13, 2019
1 parent bc8bd93 commit 6fcd8e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion LetsEncrypt.ResourceGroup/Templates/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
}
},
{
"apiVersion": "2015-08-01",
"apiVersion": "2018-02-01",
"type": "Microsoft.Web/sites/hostNameBindings",
"name": "[concat(variables('webAppName'),'/', split(parameters('hostnames'), ',')[copyIndex()])]",
"dependsOn": [
Expand All @@ -229,6 +229,8 @@
},
"copy": {
"name": "hostnameloop",
"mode": "serial",
"batchSize": 1,
"count": "[length(split(parameters('hostnames'),','))]"
}
}
Expand Down

0 comments on commit 6fcd8e1

Please sign in to comment.