The Azure Quickstart templates are currently available in English
This template shows how to create a budget under a subscription.
Este modelo do ARM (Azure Resource Manager) foi criado por um membro da comunidade, e não pela Microsoft. Cada modelo do ARM é licenciado para você de acordo com o contrato de licença de seu proprietário, e não da Microsoft. A Microsoft não é responsável por modelos do ARM fornecidos e licenciado por membros da comunidade e não avalia sua segurança, compatibilidade ou desempenho. Modelos do ARM da comunidade não têm suporte de nenhum programa ou serviço de suporte da Microsoft e são disponibilizados DA FORMA COMO ESTÃO, sem nenhum tipo de garantia.
Parâmetros
Nome do parâmetro | Descrição |
---|---|
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 |
Usar o modelo
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 deploymentInstale e configure o PowerShell do Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/create-budget/azuredeploy.json
Linha de comando
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 deploymentInstalar e configurar a Interface de Linha de Comando de Plataforma Cruzada do 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