Skip to content

Commit 2534252

Browse files
authored
Update quickstart-resource-manager.md
- Change the default SKU to 'standard` in the example to reduce unnecessary failures as there is a limitation on the free SKU. - Change to use the GA'ed API version (instead of preview) in the example
1 parent c1bd2ef commit 2534252

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-app-configuration/quickstart-resource-manager.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Before you can apply key-values to the VM, you must have an existing Azure App C
8282
},
8383
"skuName": {
8484
"type": "string",
85-
"defaultValue": "free",
85+
"defaultValue": "standard",
8686
"metadata": {
8787
"description": "Specifies the SKU of the app configuration store."
8888
}
@@ -329,15 +329,15 @@ Now that you've added key-values to the store, you're ready to deploy a VM using
329329
"imageReference": {
330330
"publisher": "MicrosoftWindowsServer",
331331
"offer": "WindowsServer",
332-
"sku": "[listKeyValue(variables('appConfigRef'), '2019-02-01-preview', variables('windowsOSVersionParameters')).value]",
332+
"sku": "[listKeyValue(variables('appConfigRef'), '2019-10-01', variables('windowsOSVersionParameters')).value]",
333333
"version": "latest"
334334
},
335335
"osDisk": {
336336
"createOption": "FromImage"
337337
},
338338
"dataDisks": [
339339
{
340-
"diskSizeGB": "[listKeyValue(variables('appConfigRef'), '2019-02-01-preview', variables('diskSizeGBParameters')).value]",
340+
"diskSizeGB": "[listKeyValue(variables('appConfigRef'), '2019-10-01', variables('diskSizeGBParameters')).value]",
341341
"lun": 0,
342342
"createOption": "Empty"
343343
}

0 commit comments

Comments
 (0)