Skip to content

Commit 890bf58

Browse files
authored
Update Default for storage account (#200)
* Update Default for storage account * Update the templates to remove warning pointed out by template validator * Fix extension type (#202) * Update azuredeploy.json * Update azuredeploy.json
1 parent 693d01d commit 890bf58

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

101-simple-windows-vm-diag/azuredeploy.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
"publisher": "[variables('imagePublisher')]",
182182
"offer": "[variables('imageOffer')]",
183183
"sku": "[parameters('windowsOSVersion')]",
184-
"version": "1.0.0"
184+
"version": "latest"
185185
},
186186
"osDisk": {
187187
"name": "osdisk",
@@ -208,8 +208,8 @@
208208
},
209209
"resources": [
210210
{
211-
"name": "Microsoft.Insights.VMDiagnosticsSettings",
212-
"type": "extensions",
211+
"name": "Microsoft.Azure.Diagnostics.IaasDiagnostics",
212+
"type": "Microsoft.Compute/VirtualMachines/extensions",
213213
"location": "[resourceGroup().location]",
214214
"apiVersion": "2015-06-15",
215215
"dependsOn": [

ad-non-ha/adVmTemplate.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@
5353
"type": "string",
5454
"metadata": {
5555
"description": "The type of the Storage Account created"
56-
}
56+
},
57+
"defaultValue": "Standard_LRS"
5758
},
5859
"adminUsername": {
5960
"type": "string",
@@ -71,7 +72,8 @@
7172
"type": "string",
7273
"metadata": {
7374
"description": "The size of the AD VMs Created"
74-
}
75+
},
76+
"defaultValue": "Standard_A2"
7577
},
7678
"subnetResourceID": {
7779
"type": "string",
@@ -193,4 +195,4 @@
193195
}
194196
],
195197
"outputs": { }
196-
}
198+
}

sharepoint-2013-non-ha/spVMTemplate.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@
5353
"type": "string",
5454
"metadata": {
5555
"description": "The type of the Storage Account created"
56-
}
56+
},
57+
"defaultValue": "Standard_LRS"
5758
},
5859
"adminUsername": {
5960
"type": "string",
@@ -71,7 +72,8 @@
7172
"type": "string",
7273
"metadata": {
7374
"description": "The size of the AD VMs Created"
74-
}
75+
},
76+
"defaultValue": "Standard_A2"
7577
},
7678
"subnetResourceId": {
7779
"type": "string",

sql-2014-non-ha/sqlVmTemplate.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@
5353
"type": "string",
5454
"metadata": {
5555
"description": "The type of the Storage Account created"
56-
}
56+
},
57+
"defaultValue": "Standard_LRS"
5758
},
5859
"adminUsername": {
5960
"type": "string",
@@ -71,7 +72,8 @@
7172
"type": "string",
7273
"metadata": {
7374
"description": "The size of the AD VMs Created"
74-
}
75+
},
76+
"defaultValue": "Standard_A3"
7577
},
7678
"subnetResourceId": {
7779
"type": "string",

vs2013-tcta/consoleVMTemplate.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
],
5858
"metadata": {
5959
"description": "The type of the Storage Account created"
60-
}
60+
},
61+
"defaultValue": "Standard_LRS"
6162
},
6263

6364
"adminUsername": {

vs2013-tcta/taVMTemplate.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
],
5858
"metadata": {
5959
"description": "The type of the Storage Account created"
60-
}
60+
},
61+
"defaultValue": "Standard_LRS"
6162
},
6263

6364
"adminUsername": {

0 commit comments

Comments
 (0)