Skip to content

Commit 15cc423

Browse files
author
Jack Williams
authored
Fix mixup in Custom Data ARM template example
The example use of Custom Data in ARM template mixed up the osProfile property name with the variable name.
1 parent c7cb64d commit 15cc423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/virtual-machines/custom-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ In Azure Resource Manager (ARM), there is a [base64 function](https://docs.micro
4949
"computerName": "[parameters('virtualMachineName')]",
5050
"adminUsername": "[parameters('adminUsername')]",
5151
"adminPassword": "[parameters('adminPassword')]",
52-
"customDataBase64": "[variables('customData')]"
52+
"customData": "[variables('customDataBase64')]"
5353
},
5454
```
5555

0 commit comments

Comments
 (0)