This template shows how to create a budget under a subscription.
This Azure Resource Manager template was created by a member of the community and not by Microsoft. Each Resource Manager template is licensed to you under a license agreement by its owner, not Microsoft. Microsoft is not responsible for Resource Manager templates provided and licensed by community members and does not screen for security, compatibility, or performance. Community Resource Manager templates are not supported under any Microsoft support program or service, and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
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 |
Use the template
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 deploymentInstall and configure Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/create-budget/azuredeploy.json
Command line
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 deploymentInstall and Configure the Azure Cross-Platform Command-Line Interface
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/create-budget/azuredeploy.json