The Azure Quickstart templates are currently available in English
This template shows how to create a budget under a subscription.
Этот шаблон Azure Resource Manager (ARM) был создан участником сообщества, а не Майкрософт. Каждый шаблон ARM лицензирован для вас в соответствии с условиями лицензионного соглашения с владельцем, а не с Майкрософт. Майкрософт не несет ответственности за шаблоны ARM, предоставленные и лицензированные членами сообщества, и не отслеживает их безопасности, совместимости или производительности. Шаблоны ARM, созданные сообществом, не поддерживаются ни в соответствии с какой-либо программой поддержки Майкрософт, ни какими-либо службами поддержки Майкрософт и предоставляются КАК ЕСТЬ без каких-либо гарантий.
Параметры
Имя параметра | Описание |
---|---|
budgetName | Name of the Budget. It should be unique within a resource group. |
amount | The total amount of cost or usage to track with the budget |
timeGrain | The time covered by a budget. Tracking of the amount will be reset based on the time grain. |
startDate | The start date must be first of the month in YYYY-MM-DD format. Future start date should not be more than three months. Past start date should be selected within the timegrain preiod. |
endDate | The end date for the budget in YYYY-MM-DD format. If not provided, we default this to 10 years from the start date. |
firstThreshold | Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000. |
secondThreshold | Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000. |
contactRoles | The list of contact roles to send the budget notification to when the threshold is exceeded. |
contactEmails | The list of email addresses to send the budget notification to when the threshold is exceeded. |
contactGroups | The list of action groups to send the budget notification to when the threshold is exceeded. It accepts array of strings. |
resourceGroupFilterValues | The set of values for the first filter |
meterCategoryFilterValues | The set of values for the second filter |
Использование шаблона
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentУстановка и настройка служб Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/create-budget/azuredeploy.json
Командная строка
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentУстановка и настройка кросс-платформенного интерфейса командной стройки Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/create-budget/azuredeploy.json