Skip to content

Commit f10c12b

Browse files
authored
Merge pull request #52858 from jacwil/patch-1
Fix mixup in Custom Data ARM template example
2 parents 7e285f1 + 15cc423 commit f10c12b

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)