Edit

Share via


Example of clusterManager.parameters.jsonc template file.

{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "name": {
      "value": "<CLUSTER_MANAGER_NAME>"
    },
    "resourceGroupName": {
      "value": "<CLUSTER_MANAGER_RG>"
    },
    "managedResourceGroupName": {
      "value": "<MRG_NAME>"
    },
    "fabricControllerId": {
      "value": "<NFC_ID>"
    },
    "vmSize": {
      "value": ""
    },
    "assignedIdentities": {
      "value": {
        "type": "UserAssigned",
        "userAssignedIdentities": {
          "<UAMI_RID>": {}
        }
      }
    },
    "clusterManagerTags": {
      "value": {
        "<TAG1>": "<TAG1_VALUE>",
        "<TAG2>": "<TAG2_VALUE>"
      }
    },
    "environment": {
      "value": "<CLUSTER_MANAGER_NAME>"
    },
    "___location": {
      "value": "<LOCATION>"
    }
  }
}