You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Microsoft.Consumption/budgets](/azure/templates/microsoft.consumption/budgets): Create an Azure budget.
46
48
47
-
## Deploy the template
49
+
###Deploy the template
48
50
49
51
1. Select the following image to sign in to Azure and open a template. The template creates a budget.
50
52
51
-
<ahref="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fcreate-budget%2Fazuredeploy.json"><imgsrc="./media/quick-create-budget-template/deploy-to-azure.png"alt="deploy to azure"/></a>
53
+
[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fcreate-budget%2Fazuredeploy.json)
52
54
53
55
2. Select or enter the following values.
54
56
@@ -96,10 +98,37 @@ Get-AzConsumptionBudget
96
98
97
99
---
98
100
101
+
## Clean up resources
102
+
103
+
When you no longer need a budget, delete it by using one the following methods:
104
+
105
+
### Azure portal
106
+
107
+
Navigate to **Cost Management + Billing** > select a billing scope > **Budgets** > select a budget > then select **Delete budget**.
108
+
109
+
# [CLI](#tab/CLI)
110
+
111
+
```azurecli-interactive
112
+
echo "Enter the budget name:" &&
113
+
read budgetName &&
114
+
az consumption budget delete --budget-name $budgetName &&
115
+
echo "Press [ENTER] to continue ..."
116
+
```
117
+
118
+
# [PowerShell](#tab/PowerShell)
119
+
120
+
```azurepowershell-interactive
121
+
$budgetName = Read-Host -Prompt "Enter the budget name"
122
+
Remove-AzConsumptionBudget -Name $budgetName
123
+
Write-Host "Press [ENTER] to continue..."
124
+
```
125
+
126
+
---
127
+
99
128
## Next steps
100
129
101
130
In this quickstart, you created an Azure budget the deployment. To learn more about Azure Cost Management and Billing and Azure Resource Manager, continue on to the articles below.
102
131
103
132
- Read the [Cost Management and Billing](../cost-management-billing-overview.md) overview
104
133
-[Create budgets](tutorial-acm-create-budgets.md) in the Azure portal
105
-
- Learn more about [Azure Resource Manager](../../azure-resource-manager/management/overview.md)
134
+
- Learn more about [Azure Resource Manager](../../azure-resource-manager/management/overview.md)
0 commit comments