Skip to content

Commit 2240cad

Browse files
Merge pull request #270011 from mattmcinnes/patch-111
Update tutorial-acm-create-budgets.md
2 parents fdd6f8e + 907afaf commit 2240cad

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/cost-management-billing/costs/tutorial-acm-create-budgets.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Tutorial - Create and manage budgets
33
description: This tutorial helps you plan and account for the costs of Azure services that you consume.
44
author: bandersmsft
55
ms.author: banders
6-
ms.date: 02/26/2024
6+
ms.date: 03/22/2024
77
ms.topic: tutorial
88
ms.service: cost-management-billing
99
ms.subservice: cost-management
@@ -249,20 +249,20 @@ provider "azurerm" {
249249
}
250250
```
251251

252-
1. Select an Azure subscription: Specify the subscription ID in the provider configuration or via environment variables.
252+
2. Select an Azure subscription: Specify the subscription ID in the provider configuration or via environment variables.
253253
```
254254
data "azurerm_subscription" "example" {}
255255
```
256256

257-
1. Create a resource group.
257+
3. Create a resource group.
258258
```
259259
resource "azurerm_resource_group" "example" {
260260
name = "example-resources"
261261
location = "West Europe"
262262
}
263263
264264
```
265-
1. Set up an action group for notifications.
265+
4. Set up an action group for notifications.
266266

267267
```
268268
resource "azurerm_monitor_action_group" "example" {
@@ -279,7 +279,7 @@ resource "azurerm_monitor_action_group" "example" {
279279
280280
```
281281

282-
1. Create a storage account.
282+
5. Create a storage account.
283283
```
284284
resource "azurerm_storage_account" "example" {
285285
name = "examplestoracc"
@@ -291,15 +291,15 @@ resource "azurerm_storage_account" "example" {
291291
292292
```
293293

294-
1. Create a storage container.
294+
6. Create a storage container.
295295
```
296296
resource "azurerm_storage_container" "example" {
297297
name = "examplecontainer"
298298
storage_account_name = azurerm_storage_account.example.name
299299
}
300300
```
301301

302-
1. Set up subscription cost management export.
302+
7. Set up subscription cost management export.
303303
```
304304
resource "azurerm_subscription_cost_management_export" "example" {
305305
name = "exampleexport"
@@ -321,7 +321,7 @@ resource "azurerm_subscription_cost_management_export" "example" {
321321
322322
```
323323

324-
1. Apply the terraform configuration
324+
8. Apply the terraform configuration
325325

326326
Here's the full code if you'd like to modify it directly from source instead of piecing it together through the steps.
327327

0 commit comments

Comments
 (0)