The Azure Quickstart templates are currently available in English
This template shows how to create a budget under a subscription.
Denne Azure Resource Manager (ARM)-malen ble opprettet av et medlem av fellesskapet og ikke av Microsoft. Hver ARM-mal er lisensiert til deg i henhold til en lisensavtale med eieren, ikke med Microsoft. Microsoft er ikke ansvarlig for ARM-maler som leveres og lisensieres av medlemmer og siler dem ikke ut med tanke på sikkerhet, kompatibilitet eller ytelse. Fellesskapets ARM-maler støttes ikke av noe Microsoft-støtteprogram eller -tjeneste, og er gjort tilgjengelig SOM DE ER, uten noen form for garanti.
Parametere
Parameternavn | Beskrivelse |
---|---|
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 |
Bruke malen
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 deploymentInstallere og konfigurere Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/create-budget/azuredeploy.json
Kommandolinje
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 deploymentInstaller og konfigurer Azures kommandolinjegrensesnitt for alle plattformer
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/create-budget/azuredeploy.json