Skip to content

Commit 386151f

Browse files
authored
Merge pull request #97470 from AndrewCS149/andrsmith/updateAutomanageARMDeploymentDocs
Clarify ARM deployment docs
2 parents b46d8f6 + 0207728 commit 386151f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/automanage/arm-deploy.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The following ARM template will onboard your specified machine onto Azure Automa
2828
"machineName": {
2929
"type": "String"
3030
},
31-
"configurationProfile": {
31+
"configurationProfileName": {
3232
"type": "String"
3333
}
3434
},
@@ -38,7 +38,7 @@ The following ARM template will onboard your specified machine onto Azure Automa
3838
"apiVersion": "2021-04-30-preview",
3939
"name": "[concat(parameters('machineName'), '/Microsoft.Automanage/default')]",
4040
"properties": {
41-
"configurationProfile": "[parameters('configurationProfile')]"
41+
"configurationProfile": "[parameters('configurationProfileName')]"
4242
}
4343
}
4444
]
@@ -51,11 +51,12 @@ This ARM template will create a configuration profile assignment for your specif
5151
The `configurationProfile` value can be one of the following values:
5252
* "/providers/Microsoft.Automanage/bestPractices/AzureBestPracticesProduction"
5353
* "/providers/Microsoft.Automanage/bestPractices/AzureBestPracticesDevTest"
54+
* "/subscriptions/[sub ID]/resourceGroups/resourceGroupName/providers/Microsoft.Automanage/configurationProfiles/customProfileName (for custom profiles)
5455

5556
Follow these steps to deploy the ARM template:
5657
1. Save this ARM template as `azuredeploy.json`
5758
1. Run this ARM template deployment with `az deployment group create --resource-group myResourceGroup --template-file azuredeploy.json`
58-
1. Provide the values for machineName, and configurationProfileAssignment when prompted
59+
1. Provide the values for machineName, and configurationProfileName when prompted
5960
1. You're ready to deploy
6061

6162
As with any ARM template, it's possible to factor out the parameters into a separate `azuredeploy.parameters.json` file and use that as an argument when deploying.

0 commit comments

Comments
 (0)