Erőforrás helyének beállítása ARM-sablonban

Azure Resource Manager-sablon (ARM-sablon) üzembe helyezésekor minden erőforráshoz meg kell adnia egy helyet. A helynek nem kell azonosnak lennie az erőforráscsoport helyével.

Elérhető helyek lekérése

A különböző erőforrástípusok különböző helyeken támogatottak. Az erőforrástípus támogatott helyeinek lekéréséhez használja a Azure PowerShell vagy az Azure CLI-t.

((Get-AzResourceProvider -ProviderNamespace Microsoft.Batch).ResourceTypes `
  | Where-Object ResourceTypeName -eq batchAccounts).Locations

Helyparaméter használata

Ha rugalmasan szeretné üzembe helyezni a sablont, adjon meg egy paramétert az erőforrások helyének megadásához. Állítsa a paraméter alapértelmezett értékét a értékre resourceGroup().location.

Az alábbi példa egy olyan tárfiókot mutat be, amely paraméterként megadott helyen van üzembe helyezve:

{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "storageAccountType": {
      "type": "string",
      "defaultValue": "Standard_LRS",
      "allowedValues": [
        "Standard_LRS",
        "Standard_GRS",
        "Standard_ZRS",
        "Premium_LRS"
      ],
      "metadata": {
        "description": "Storage Account type"
      }
    },
    "location": {
      "type": "string",
      "defaultValue": "[resourceGroup().location]",
      "metadata": {
        "description": "Location for all resources."
      }
    }
  },
  "variables": {
    "storageAccountName": "[format('storage{0}', uniqueString(resourceGroup().id))]"
  },
  "resources": [
    {
      "type": "Microsoft.Storage/storageAccounts",
      "apiVersion": "2022-09-01",
      "name": "[variables('storageAccountName')]",
      "location": "[parameters('location')]",
      "sku": {
        "name": "[parameters('storageAccountType')]"
      },
      "kind": "StorageV2",
      "properties": {}
    }
  ],
  "outputs": {
    "storageAccountName": {
      "type": "string",
      "value": "[variables('storageAccountName')]"
    }
  }
}

Következő lépések