Вы можете использовать Azure Policy , чтобы сделать это.
Вот пример политики, требующей, чтобы все ресурсы были развернуты в утвержденном расположении, см. Эту ссылку , вы можете попробовать развернуть с порталом или с powershell .
Эта политика требует, чтобы все ресурсы были развернуты в утвержденных местоположениях.Вы указываете массив утвержденных местоположений.
Образец шаблона:
{
"properties": {
"displayName": "Allowed locations",
"policyType": "BuiltIn",
"description": "This policy enables you to restrict the locations your organization can specify when deploying resources. Use to enforce your geo-compliance requirements.",
"parameters": {
"listOfAllowedLocations": {
"type": "Array",
"metadata": {
"description": "The list of locations that can be specified when deploying resources.",
"strongType": "location",
"displayName": "Allowed locations"
}
}
},
"policyRule": {
"if": {
"not": {
"field": "location",
"in": "[parameters('listOfAllowedLocations')]"
}
},
"then": {
"effect": "Deny"
}
}
},
"id": "/providers/Microsoft.Authorization/policyDefinitions/e56962a6-4747-49cd-b67b-bf8b01975c4c",
"type": "Microsoft.Authorization/policyDefinitions",
"name": "e56962a6-4747-49cd-b67b-bf8b01975c4c"
}