Skip to content

Commit

Permalink
Merge pull request #486 from Wipcore/master
Browse files Browse the repository at this point in the history
changed sql apiversion from 2.0 to 2014-04-01-preview because of 2.0 …
  • Loading branch information
artem-dudarev committed Jun 6, 2016
2 parents d173487 + bd99d09 commit ff7f3c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"type": "Microsoft.Sql/servers",
"name": "[parameters('sqlServerName')]",
"location": "[parameters('siteLocation')]",
"apiVersion": "2.0",
"apiVersion": "2014-04-01-preview",
"properties": {
"administratorLogin": "[parameters('sqlAdministratorLogin')]",
"administratorLoginPassword": "[parameters('sqlAdministratorPassword')]"
Expand All @@ -86,7 +86,7 @@
"type": "databases",
"name": "[parameters('siteName')]",
"location": "[parameters('siteLocation')]",
"apiVersion": "2.0",
"apiVersion": "2014-04-01-preview",
"dependsOn": [
"[concat('Microsoft.Sql/servers/', parameters('sqlServerName'))]"
],
Expand All @@ -101,7 +101,7 @@
"type": "firewallrules",
"name": "AllowAllWindowsAzureIps",
"location": "[parameters('siteLocation')]",
"apiVersion": "2.0",
"apiVersion": "2014-04-01-preview",
"dependsOn": [
"[concat('Microsoft.Sql/servers/', parameters('sqlServerName'))]"
],
Expand Down

0 comments on commit ff7f3c2

Please sign in to comment.