Skip to content

Commit 52fb8f5

Browse files
committed
updates7
1 parent 0c0580e commit 52fb8f5

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/backup/quick-backup-vm-terraform.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: 'Quickstart: Create an Azure Windows virtual machine using Terraform'
3-
description: In this quickstart, you create an Azure Windows virtual machine (VM), virtual network, subnet, public IP, network security group, network interface, storage account, Azure Backup recovery services vault, Backup policy, and a protected VM for backup.
2+
title: 'Quickstart: Back up a virtual machine in Azure with Terraform'
3+
description: In this quickstart, you create an Azure Windows virtual machine (VM), virtual network, subnet, public IP, network security group, network interface, storage account, Azure Backup recovery services vault, Backup policy, and a protected VM for backup. This can help you to configure Backup to run a backup on demand.
44
ms.topic: quickstart
55
ms.date: 11/27/2024
66
ms.custom: devx-track-terraform
77
ms.service: windows
88
author: AbhishekMallick-MS
99
ms.author: v-abhmallick
10-
#customer intent: As a Terraform user, I want to see how to create and configure an Azure virtual network, subnet, public IP, network security group, network interface, storage account, virtual machine, Azure Backup recovery services vault, and Backup policy.
10+
#customer intent: As a Terraform user, I want to see how to create and configure an Azure virtual network, subnet, public IP, network security group, network interface, storage account, virtual machine, Azure Backup recovery services vault, and Backup policy to configure Backup and run a backup on demand.
1111
content_well_notification:
1212
- AI-contribution
1313
---
1414

15-
# Quickstart: Create an Azure Windows virtual machine using Terraform
15+
# Quickstart: Back up a virtual machine in Azure with Terraform
1616

1717
In this quickstart, you create an Azure Windows virtual machine (VM) and associated resources using Terraform. An Azure Windows VM is a scalable computing resource that Azure provides. It's an on-demand, virtualized Windows server in the Azure cloud. You can use it to deploy, test, and run applications, among other things. In addition to the VM, this code also creates a virtual network, subnet, public IP, network security group, network interface, storage account, Azure Backup recovery services vault, and Backup policy.
1818

@@ -96,7 +96,7 @@ In this quickstart, you create an Azure Windows virtual machine (VM) and associa
9696
windows_virtual_machine_name = $(terraform output -raw azurerm_windows_virtual_machine_name)
9797
```
9898

99-
1. Run [az backup protection backup-now]( /cli/azure/backup/protection #az-backup-protection-backup-now) to start a backup job.
99+
1. Run [az backup protection backup-now](/cli/azure/backup/protection #az-backup-protection-backup-now) to start a backup job.
100100

101101
```azurecli
102102
az backup protection backup-now --resource-group $resource_group_name \
@@ -106,22 +106,22 @@ In this quickstart, you create an Azure Windows virtual machine (VM) and associa
106106
--backup-management-type AzureIaaSVM
107107
```
108108

109-
1. Run [az backup job list]( /cli/azure/backup/job #az-backup-job-list) to monitor the backup job.
109+
1. Run [az backup job list](/cli/azure/backup/job #az-backup-job-list) to monitor the backup job.
110110

111111
```azurecli
112112
az backup job list --resource-group $resource_group_name \
113113
--vault-name $recovery_services_vault_name \
114114
--output table
115115
```
116116

117-
The output is similar to the following example, which shows the backup job is *InProgress*:
117+
The output is similar to the following example, which shows the backup job is *InProgress*:
118118

119-
```output
120-
Name Operation Status Item Name Start Time UTC Duration
121-
-------- --------------- ---------- ----------- ------------------- --------------
122-
a0a8e5e6 Backup InProgress myvm 2017-09-19T03:09:21 0:00:48.718366
123-
fe5d0414 ConfigureBackup Completed myvm 2017-09-19T03:03:57 0:00:31.191807
124-
```
119+
```output
120+
Name Operation Status Item Name Start Time UTC Duration
121+
-------- --------------- ---------- ----------- ------------------- --------------
122+
a0a8e5e6 Backup InProgress myvm 2017-09-19T03:09:21 0:00:48.718366
123+
fe5d0414 ConfigureBackup Completed myvm 2017-09-19T03:03:57 0:00:31.191807
124+
```
125125

126126
When the *Status* of the backup job reports *Completed*, your VM is protected with Backup recovery services and has a full recovery point stored.
127127

0 commit comments

Comments
 (0)