The Azure Quickstart templates are currently available in English
This template shows how to create a budget under a subscription.
Esta plantilla de Azure Resource Manager (ARM) la creó un miembro de la comunidad, no Microsoft. Su propietario (no Microsoft) le permite usar las plantillas de ARM con arreglo a un contrato de licencia. Microsoft no se responsabiliza de ninguna plantilla de ARM que le proporcionen los miembros de la comunidad (o cuya licencia le otorguen) en cuanto a su seguridad, compatibilidad ni rendimiento. Las plantillas de ARM de la comunidad no reciben ningún tipo de soporte en ningún servicio ni programa de soporte de Microsoft. Dichas plantillas se proporcionan TAL CUAL, sin garantía de ningún tipo.
Parámetros
Nombre del parámetro | Descripción |
---|---|
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 |
Uso de la plantilla
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 deploymentInstalar y configurar PowerShell de Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/create-budget/azuredeploy.json
Línea de comandos
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 deploymentInstalación y configuración de la interfaz de línea de comandos multiplataforma de 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