Skip to content

Commit f760a28

Browse files
committed
updates2
1 parent 2512a94 commit f760a28

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
---
22
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, recovery services vault, backup policy, and a protected VM for backup.
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.
44
ms.topic: quickstart
55
ms.date: 11/27/2024
66
ms.custom: devx-track-terraform
77
ms.service: windows
88
author: v-abhmallick
99
ms.author: AbhishekMallick-MS
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, 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.
1111
content_well_notification:
1212
- AI-contribution
1313
---
1414

15-
# Quickstart: Create an Azure windows virtual machine using Terraform
15+
# Quickstart: Create an Azure Windows virtual machine using Terraform
1616

17-
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, recovery services vault, and backup policy.
17+
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

1919
[!INCLUDE [About Terraform](~/azure-dev-docs-pr/articles/terraform/includes/abstract.md)]
2020

2121
> [!div class="checklist"]
2222
> * Specify the required version of Terraform and the required providers.
23-
> * Configure the Azure provider with recovery service features.
23+
> * Configure the Azure provider with Backup recovery services features.
2424
> * Declare variables for the resource group location, resource group name prefix, and an enabled soft delete status.
2525
> * Generate a random pet name for the resource group.
2626
> * Create an Azure resource group with the generated pet name.
@@ -29,16 +29,16 @@ In this quickstart, you create an Azure Windows virtual machine (VM) and associa
2929
> * Create a subnet within the virtual network with a unique name and a specified address prefix.
3030
> * Create a public IP address with a unique name.
3131
> * Create a network security group with two security rules for remote desk protocol and web traffic.
32-
> * Create a network interface with a unique name and attach it to the subnet and public IP address.
32+
> * Create a network interface with a unique name, and attach it to the subnet and public IP address.
3333
> * Associate the network security group with the network interface.
3434
> * Create a storage account for boot diagnostics.
35-
> * Create a Windows VM with a unique name, specified size, and attached to the network interface.
35+
> * Create a Windows VM with a unique name, is a specified size, and is attached to the network interface.
3636
> * Generate a random ID for a unique storage account name.
3737
> * Generate a random password for the VM.
38-
> * Create a recovery services vault with a unique name.
39-
> * Create a backup policy for the VM with daily frequency and a retention period of 7 days.
40-
> * Protect the VM with the created backup policy.
41-
> * Output the names of the resource group, recovery services vault, backup policy, and VM.
38+
> * Create a Backup recovery services vault with a unique name.
39+
> * Create a Backup policy for the VM with daily frequency and a retention period of seven days.
40+
> * Protect the VM with the created Backup policy.
41+
> * Output the names of the resource group, Backup recovery services vault, Backup policy, and VM.
4242
> * Output the public IP address and admin password of the VM.
4343
4444
## Prerequisites
@@ -90,7 +90,7 @@ In this quickstart, you create an Azure Windows virtual machine (VM) and associa
9090
resource_group_name = $(terraform outout -raw azurerm_resource_group_name)
9191
```
9292

93-
1. Get the Recovery Services vault name.
93+
1. Get the Backup recovery services vault name.
9494

9595
```Terraform
9696
recovery_services_vault_name = $(terraform output -raw azurerm_recovery_services_vault_name)
@@ -129,7 +129,7 @@ a0a8e5e6 Backup InProgress myvm 2017-09-19T03:09:21 0:00:48
129129
fe5d0414 ConfigureBackup Completed myvm 2017-09-19T03:03:57 0:00:31.191807
130130
```
131131

132-
When the *Status* of the backup job reports *Completed*, your VM is protected with Recovery Services and has a full recovery point stored.
132+
When the *Status* of the backup job reports *Completed*, your VM is protected with Backup recovery services and has a full recovery point stored.
133133

134134
---
135135

@@ -144,4 +144,4 @@ When the *Status* of the backup job reports *Completed*, your VM is protected wi
144144
## Next steps
145145

146146
> [!div class="nextstepaction"]
147-
> [See more articles about Azure windows VMs](/search/?terms=Azure%20windows%20virtual%20machine%20and%20terraform).
147+
> [See more articles about Azure Windows VMs](/search/?terms=Azure%20windows%20virtual%20machine%20and%20terraform).

0 commit comments

Comments
 (0)