@@ -12,15 +12,14 @@ ms.custom: template-how-to, devx-track-arm-template
12
12
# Example of clusterManager.jsonc template file.
13
13
14
14
``` clusterManager.jsonc
15
-
16
15
{
17
16
" $schema" : " https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#" ,
18
17
" contentVersion" : " 1.0.0.0" ,
19
18
" parameters" : {
20
19
" environment" : {
21
20
" type" : " string" ,
22
21
" metadata" : {
23
- " description" : " Name of the environment "
22
+ " description" : " Name of the Environment "
24
23
}
25
24
},
26
25
" name" : {
@@ -49,20 +48,26 @@ ms.custom: template-how-to, devx-track-arm-template
49
48
" resourceGroupName" : {
50
49
" type" : " string" ,
51
50
" metadata" : {
52
- " description" : " Specify the resource group for the resources."
51
+ " description" : " Specify the Resource Group for the resources."
53
52
},
54
53
" defaultValue" : " "
55
54
},
56
55
" managedResourceGroupName" : {
57
56
" type" : " string" ,
58
57
" metadata" : {
59
- " description" : " Specify a managed resource group for the resource."
58
+ " description" : " Specify a Managed Resource Group for the resource."
60
59
}
61
60
},
62
61
" clusterManagerTags" : {
63
62
" type" : " object" ,
64
63
" metadata" : {
65
- " description" : " Additional tags to pass to the cluster manager on creation"
64
+ " description" : " Additional tags to pass to the Cluster Manager on creation"
65
+ }
66
+ },
67
+ " assignedIdentities" : {
68
+ " type" : " object" ,
69
+ " metadata" : {
70
+ " description" : " The assigned identities for the Cluster Manager"
66
71
}
67
72
}
68
73
},
@@ -72,7 +77,7 @@ ms.custom: template-how-to, devx-track-arm-template
72
77
" type" : " Microsoft.Resources/deployments" ,
73
78
" apiVersion" : " 2021-04-01" ,
74
79
" name" : " [concat(parameters('environment'), '-lab-cm-deployment')]" ,
75
- " resourceGroup" : " [parameters('resourceGroupName')]" ,
80
+ " resourceGroup" : " [parameters('resourceGroupName')]" ,
76
81
" tags" : {},
77
82
" properties" : {
78
83
" debugSetting" : {
@@ -112,16 +117,20 @@ ms.custom: template-how-to, devx-track-arm-template
112
117
},
113
118
" clusterManagerTags" : {
114
119
" type" : " object"
120
+ },
121
+ " assignedIdentities" : {
122
+ " type" : " object"
115
123
}
116
124
},
117
125
" variables" : {},
118
126
" resources" : [
119
127
{
120
128
" type" : " Microsoft.NetworkCloud/clusterManagers" ,
121
- " apiVersion" : " 2023 -07-01" ,
129
+ " apiVersion" : " 2024 -07-01" ,
122
130
" name" : " [parameters('name')]" ,
123
131
" location" : " [parameters('location')]" ,
124
132
" tags" : " [parameters('clusterManagerTags')]" ,
133
+ " identity" : " [parameters('assignedIdentities')]" ,
125
134
" properties" : {
126
135
" fabricControllerId" : " [parameters('fabricControllerId')]" ,
127
136
" vmSize" : " [if(equals(parameters('vmSize'), ''), json('null'), parameters('vmSize'))]" ,
@@ -157,6 +166,9 @@ ms.custom: template-how-to, devx-track-arm-template
157
166
" resourceGroupName" : {
158
167
" value" : " [parameters('resourceGroupName')]"
159
168
},
169
+ " assignedIdentities" : {
170
+ " value" : " [parameters('assignedIdentities')]"
171
+ },
160
172
" managedResourceGroupConfiguration" : {
161
173
" value" : {
162
174
" location" : " [parameters('location')]" ,
0 commit comments