File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -104,12 +104,12 @@ Common arguments that are available for every Azure CLI command:
104
104
### [ Azure PowerShell] ( #tab/azure-powershell )
105
105
106
106
``` azurepowershell-interactive
107
- $tagHash = @{
107
+ $TAGS_HASH = @{
108
108
tag1 = "true"
109
109
tag2 = "false"
110
110
}
111
111
112
- New-AzNetworkCloudClusterManager -Name "$CLUSTER_MANAGER_NAME -Location $LOCATION -ResourceGroupName $CLUSTER_MANAGER_RG -SubscriptionId $SUB_ID -AnalyticsWorkspaceId $LAW_NAME -ManagedResourceGroupConfigurationName $MRG_NAME -ManagedResourceGroupConfigurationLocation $MRG_LOCATION -FabricControllerId $NFC_ID -Tag $tagHash
112
+ New-AzNetworkCloudClusterManager -Name "$CLUSTER_MANAGER_NAME -Location $LOCATION -ResourceGroupName $CLUSTER_MANAGER_RG -SubscriptionId $SUB_ID -AnalyticsWorkspaceId $LAW_NAME -ManagedResourceGroupConfigurationName $MRG_NAME -ManagedResourceGroupConfigurationLocation $MRG_LOCATION -FabricControllerId $NFC_ID -Tag $TAGS_HASH
113
113
```
114
114
115
115
Parameters:
@@ -272,12 +272,12 @@ az networkcloud clustermanager identity remove \
272
272
### [ Azure PowerShell] ( #tab/azure-powershell )
273
273
274
274
``` azurepowershell-interactive
275
- $tagHash = @{
275
+ $TAGS_HASH = @{
276
276
tag1 = "true"
277
277
tag2 = "false"
278
278
}
279
279
280
- Update-AzNetworkCloudClusterManager -Name "$CLUSTER_MANAGER_NAME -ResourceGroupName $CLUSTER_MANAGER_RG -SubscriptionId $SUB_ID -Tag $tagHash
280
+ Update-AzNetworkCloudClusterManager -Name "$CLUSTER_MANAGER_NAME -ResourceGroupName $CLUSTER_MANAGER_RG -SubscriptionId $SUB_ID -Tag $TAGS_HASH
281
281
```
282
282
283
283
### [ ARM Template] ( #tab/template )
@@ -305,11 +305,6 @@ az networkcloud clustermanager delete \
305
305
### [ Azure PowerShell] ( #tab/azure-powershell )
306
306
307
307
``` azurepowershell-interactive
308
- $tagHash = @{
309
- tag1 = "true"
310
- tag2 = "false"
311
- }
312
-
313
308
Remove-AzNetworkCloudClusterManager -Name "$CLUSTER_MANAGER_NAME -ResourceGroupName $CLUSTER_MANAGER_RG -SubscriptionId $SUB_ID
314
309
```
315
310
You can’t perform that action at this time.
0 commit comments