Skip to content

Commit 4d3e5f6

Browse files
committed
Updated branding
1 parent 2817d3b commit 4d3e5f6

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

azure-local/manage/create-arc-virtual-machines.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
---
2-
title: Create Arc virtual machines on Azure Local
3-
description: Learn how to view your system in the Azure portal and create Arc virtual machines on Azure Local.
2+
title: Create Azure Local virtual machines enabled by Azure Arc
3+
description: Learn how to view your Azure Local instance in the Azure portal and create Azure Local VMs enabled by Azure Arc.
44
author: alkohli
55
ms.author: alkohli
66
ms.reviewer: alkohli
77
ms.topic: how-to
88
ms.service: azure-local
99
ms.custom: devx-track-azurecli
10-
ms.date: 02/24/2025
10+
ms.date: 03/14/2025
1111
---
1212

13-
# Create Arc virtual machines on Azure Local
13+
# Create Azure Local virtual machines enabled by Azure Arc
1414

1515
[!INCLUDE [hci-applies-to-23h2](../includes/hci-applies-to-23h2.md)]
1616

17-
This article describes how to create an Arc virtual machine (VM) starting with the VM images that you created on your Azure Local instance. You can create Arc VMs using the Azure CLI, Azure portal, or Azure Resource Manager template.
17+
This article describes how to create an Azure Local virtual machines (VMs) starting with the VM images that you created on your Azure Local instance. You can create Azure Local VMs using the Azure CLI, Azure portal, or Azure Resource Manager template.
1818

1919
## About Azure Local resource
2020

2121
Use the [Azure Local resource page](https://portal.azure.com/#blade/HubsExtension/BrowseResource/resourceType/Microsoft.AzureStackHCI%2Fclusters) for the following operations:
2222

23-
- Create and manage Arc VM resources such as VM images, disks, network interfaces.
24-
- View and access Azure Arc Resource Bridge and Custom Location associated with the Azure Local instance.
25-
- Provision and manage Arc VMs.
23+
- Create and manage VM resources such as VM images, disks, network interfaces.
24+
- View and access Azure Arc resource bridge and custom location associated with the Azure Local instance.
25+
- Provision and manage VMs.
2626

27-
The procedure to create Arc VMs is described in the next section.
27+
The procedure to create VMs is described in the next section.
2828

2929
## Prerequisites
3030

31-
Before you create an Azure Arc-enabled VM, make sure that the following prerequisites are completed.
31+
Before you create an Azure Local VM, make sure that the following prerequisites are completed.
3232

3333
# [Azure CLI](#tab/azurecli)
3434

@@ -78,9 +78,9 @@ Before you create an Azure Arc-enabled VM, make sure that the following prerequi
7878
7979
---
8080
81-
## Create Arc VMs
81+
## Create Azure Local VMs
8282
83-
Follow these steps to create an Arc VM on your Azure Local.
83+
Follow these steps to create a VM on your Azure Local.
8484
8585
# [Azure CLI](#tab/azurecli)
8686
@@ -138,7 +138,7 @@ Here we create a VM that uses specific memory and processor counts on a specifie
138138
139139
1. Run the following commands to create the applicable VM.
140140
141-
**To create a Trusted launch Arc VM:**
141+
**To create a Trusted launch Azure Local VM enabled by Azure Arc:**
142142
143143
1. Specify additional flags to enable secure boot, enable virtual TPM, and choose security type. Note, when you specify security type as Trusted launch, you must enable secure boot and vTPM, otherwise Trusted launch VM creation will fail.
144144
@@ -162,7 +162,7 @@ Here we create a VM that uses specific memory and processor counts on a specifie
162162
163163
1. Ensure a value of `TrustedLaunch` is returned.
164164
165-
**To create a standard Arc VM:**
165+
**To create a standard Azure Local VM:**
166166
167167
```azurecli
168168
az stack-hci-vm create --name $vmName --resource-group $resource_group --admin-username $userName --admin-password $password --computer-name $computerName --image $imageName --location $location --authentication-type all --nics $nicName --custom-location $customLocationID --hardware-profile memory-mb="8192" processors="4" --storage-path-id $storagePathId
@@ -171,18 +171,18 @@ Here we create a VM that uses specific memory and processor counts on a specifie
171171
The VM is successfully created when the `provisioningState` shows as `succeeded`in the output.
172172

173173
> [!NOTE]
174-
> The VM created has guest management enabled by default. If for any reason guest management fails during VM creation, you can follow the steps in [Enable guest management on Arc VM](./manage-arc-virtual-machines.md#enable-guest-management) to enable it after the VM creation.
174+
> The VM created has guest management enabled by default. If for any reason guest management fails during VM creation, you can follow the steps in [Enable guest management on Azure Local VM](./manage-arc-virtual-machines.md#enable-guest-management) to enable it after the VM creation.
175175
176176
In this example, the storage path was specified using the `--storage-path-id` flag and that ensured that the workload data (including the VM, VM image, non-OS data disk) is placed in the specified storage path.
177177

178178
If the flag isn't specified, the workload (VM, VM image, non-OS data disk) is automatically placed in a high availability storage path.
179179

180180
### Additional parameters for Windows Server 2012 and Windows Server 2012 R2 images
181181

182-
When creating an Arc VM using Windows Server 2012 and Windows Server 2012 R2 images, specify the following additional parameters to create the VM:
182+
When creating a VM using Windows Server 2012 and Windows Server 2012 R2 images, specify the following additional parameters to create the VM:
183183

184-
- `--enable-agent`: Set this parameter to `true` to onboard the Azure Connected Machine agent on Arc VMs.
185-
- `--enable-vm-config-agent`: Set this parameter to `false` to prevent the onboarding of the VM agent on the VM from the host via Hyper-V sockets channel. Windows Server 2012 and Windows Server 2012 R2 don't support Hyper-V sockets. In the newer image versions that support Hyper-V sockets, the VM agent is used to onboard the Azure Connected Machine agent on Arc VMs. For more information on Hyper-V sockets, see [Make your own integration services](/virtualization/hyper-v-on-windows/user-guide/make-integration-service).
184+
- `--enable-agent`: Set this parameter to `true` to onboard the Azure Connected Machine agent on VMs.
185+
- `--enable-vm-config-agent`: Set this parameter to `false` to prevent the onboarding of the VM agent on the VM from the host via Hyper-V sockets channel. Windows Server 2012 and Windows Server 2012 R2 don't support Hyper-V sockets. In the newer image versions that support Hyper-V sockets, the VM agent is used to onboard the Azure Connected Machine agent on VMs. For more information on Hyper-V sockets, see [Make your own integration services](/virtualization/hyper-v-on-windows/user-guide/make-integration-service).
186186

187187
### Create a Linux VM
188188

@@ -199,7 +199,7 @@ To create a Linux VM, use the same command that you used to create the Windows V
199199

200200
Use this optional parameter **proxy-configuration** to configure a proxy server for your VM.
201201

202-
Proxy configuration for Arc VMs is applied only to the onboarding of the Azure connected machine agent and set as environment variables within the guest VM operating system. Browsers and applications on the VM aren't necessarily all enabled with this proxy configuration.
202+
Proxy configuration for VMs is applied only to the onboarding of the Azure connected machine agent and set as environment variables within the guest VM operating system. Browsers and applications on the VM aren't necessarily all enabled with this proxy configuration.
203203

204204
As such, you may need to specifically set the proxy configuration for your applications if they don't reference the environment variables set within the VM.
205205

@@ -297,12 +297,12 @@ Follow these steps in Azure portal for your Azure Local.
297297

298298
> [!NOTE]
299299
> - Add at least one network interface through the **Networking** tab to complete guest management setup.
300-
> - The network interface that you enable, must have a valid IP address and internet access. For more information, see [Arc VM management networking](../manage/azure-arc-vm-management-networking.md#arc-vm-virtual-network).
300+
> - The network interface that you enable, must have a valid IP address and internet access. For more information, see [Azure Local VM management networking](../manage/azure-arc-vm-management-networking.md#arc-vm-virtual-network).
301301
302-
1. In the VM proxy configuration section, to configure a proxy for your Arc VM, input the following parameters:
302+
1. In the VM proxy configuration section, to configure a proxy for your VM, input the following parameters:
303303

304304
> [!NOTE]
305-
> Proxy configuration for Arc VMs is applied only to the onboarding of the Azure connected machine agent and set as environment variables within the guest VM operating system. Browsers and applications on the VM aren't necessarily all enabled with this proxy configuration. As such, you may need to specifically set the proxy configuration for your applications if they don't reference the environment variables set within the VM.
305+
> Proxy configuration for VMs is applied only to the onboarding of the Azure connected machine agent and set as environment variables within the guest VM operating system. Browsers and applications on the VM aren't necessarily all enabled with this proxy configuration. As such, you may need to specifically set the proxy configuration for your applications if they don't reference the environment variables set within the VM.
306306
307307
:::image type="content" source="./media/create-arc-virtual-machines/arc-vm-proxy-configuration.png" alt-text="Screenshot of local VM administrator on Basics tab." lightbox="./media/create-arc-virtual-machines/arc-vm-proxy-configuration.png":::
308308

@@ -388,7 +388,7 @@ Follow these steps to deploy the Resource Manager template:
388388

389389
1. Replace the blank template with the template that you downloaded during the prerequisites step.
390390

391-
This template creates an Arc VM. First, a virtual network interface is created. You can optionally enable domain-join and attach a virtual disk to the VM you create. Finally, the VM is created with the guest management enabled.
391+
This template creates an Azure Local VM. First, a virtual network interface is created. You can optionally enable domain-join and attach a virtual disk to the VM you create. Finally, the VM is created with the guest management enabled.
392392

393393
```json
394394
{
@@ -701,17 +701,17 @@ You can use the Azure Verified Module (AVM) that contains the Terraform template
701701

702702
---
703703

704-
## Use managed identity to authenticate Arc VMs
704+
## Use managed identity to authenticate Azure Local VMs
705705

706-
When the Arc VMs are created on your Azure Local via Azure CLI or Azure portal, a system-assigned managed identity is also created that lasts for the lifetime of the Arc VMs.
706+
When the VMs are created on your Azure Local via Azure CLI or Azure portal, a system-assigned managed identity is also created that lasts for the lifetime of the VMs.
707707

708-
The Arc VMs on Azure Local are extended from Arc-enabled servers and can use system-assigned managed identity to access other Azure resources that support Microsoft Entra ID-based authentication. For example, the Arc VMs can use a system-assigned managed identity to access the Azure Key Vault.
708+
The VMs on Azure Local are extended from Arc-enabled servers and can use system-assigned managed identity to access other Azure resources that support Microsoft Entra ID-based authentication. For example, the VMs can use a system-assigned managed identity to access the Azure Key Vault.
709709

710710
For more information, see [system-assigned managed identities](/entra/identity/managed-identities-azure-resources/overview#managed-identity-types) and [Authenticate against Azure resource with Azure Arc-enabled servers](/azure/azure-arc/servers/managed-identity-authentication).
711711

712712
## Next steps
713713

714-
- [Delete Arc VMs](./manage-arc-virtual-machines.md#delete-a-vm).
714+
- [Delete Azure LocalVMs](./manage-arc-virtual-machines.md#delete-a-vm).
715715
- [Install and manage VM extensions](./virtual-machine-manage-extension.md).
716-
- [Troubleshoot Arc VMs](troubleshoot-arc-enabled-vms.md).
717-
- [Frequently Asked Questions for Arc VM management](./azure-arc-vms-faq.yml).
716+
- [Troubleshoot Azure Local VMs](troubleshoot-arc-enabled-vms.md).
717+
- [Frequently Asked Questions for Azure Local VM management](./azure-arc-vms-faq.yml).

0 commit comments

Comments
 (0)