Skip to content

Commit 78e1d0f

Browse files
authored
Update clustermanager-parameters-jsonc-example.md
Update CM parameter file for UAMI
1 parent 6a2727e commit 78e1d0f

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

articles/operator-nexus/clustermanager-parameters-jsonc-example.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,32 @@ ms.custom: template-how-to, devx-track-arm-template
1212
# Example of clusterManager.parameters.jsonc template file.
1313

1414
```clusterManager.parameters.jsonc
15-
1615
{
1716
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
1817
"contentVersion": "1.0.0.0",
1918
"parameters": {
2019
"name": {
21-
"value": "$CLUSTER_MANAGER_NAME"
20+
"value": "<CLUSTER_MANAGER_NAME>"
2221
},
2322
"resourceGroupName": {
24-
"value": "$CLUSTER_MANAGER_RG"
23+
"value": "<CLUSTER_MANAGER_RG>"
2524
},
2625
"managedResourceGroupName": {
27-
"value": "$MRG_NAME"
26+
"value": "<MRG_NAME>"
2827
},
2928
"fabricControllerId": {
30-
"value": "$NFC_ID"
29+
"value": "<NFC_ID>"
3130
},
3231
"vmSize": {
33-
"value": "$VM_SIZE"
32+
"value": ""
33+
},
34+
"assignedIdentities": {
35+
"value": {
36+
"type": "UserAssigned",
37+
"userAssignedIdentities": {
38+
"<UAMI_RID>": {}
39+
}
40+
}
3441
},
3542
"clusterManagerTags": {
3643
"value": {
@@ -39,10 +46,10 @@ ms.custom: template-how-to, devx-track-arm-template
3946
}
4047
},
4148
"environment": {
42-
"value": "$CLUSTER_MANAGER_NAME"
49+
"value": "<CLUSTER_MANAGER_NAME>"
4350
},
4451
"location": {
45-
"value": "$LOCATION"
52+
"value": "<LOCATION>"
4653
}
4754
}
4855
}

0 commit comments

Comments
 (0)