Skip to content

Commit 9321656

Browse files
authored
Merge pull request #101289 from mumian/0115-order-linked
order the properties
2 parents 4b59869 + 516b1f4 commit 9321656

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/azure-resource-manager/templates/template-tutorial-create-linked-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ The linked template creates a storage account. The linked template can be used a
137137
"resources": [
138138
{
139139
"type": "Microsoft.Storage/storageAccounts",
140+
"apiVersion": "2018-11-01",
140141
"name": "[parameters('storageAccountName')]",
141142
"location": "[parameters('location')]",
142-
"apiVersion": "2018-11-01",
143143
"sku": {
144144
"name": "Standard_LRS"
145145
},

articles/azure-resource-manager/templates/template-tutorial-deploy-vm-extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Add a virtual machine extension resource to the existing template with the follo
7171

7272
```json
7373
{
74-
"apiVersion": "2018-06-01",
7574
"type": "Microsoft.Compute/virtualMachines/extensions",
75+
"apiVersion": "2018-06-01",
7676
"name": "[concat(variables('vmName'),'/', 'InstallWebServer')]",
7777
"location": "[parameters('location')]",
7878
"dependsOn": [

0 commit comments

Comments
 (0)