Skip to content

This page explains how to use the Azure VM ID identifier to uniquely identify workloads deployed on Azure.

When you deploy applications to Azure, you often identify specific virtual machine instances by their VM IDs. Azure assigns each virtual machine a unique identifier at creation. For more details, see the “Understand names and instance IDs for Azure Virtual Machine Scale Set VMs in the Microsoft docs.

Aembit supports the Azure VM ID identification method for Edge-based deployments on Virtual Machines deployed to Azure.

Create a Client Workload with an Azure VM ID identifier

Section titled “Create a Client Workload with an Azure VM ID identifier”

To configure a Client Workload with an Azure VM ID identifier, follow these steps:

  1. Log into your Aembit Tenant.

  2. Click Client Workloads in the left nav pane.

  3. Click New, revealing the Client Workload pop out menu.

  4. Enter the Name and optional Description for the Client Workload.

  5. Under Client Identification, select Azure VM ID.

    For Value, enter the VM ID where the workload is running.

    For example, if your Azure VM ID is 12345678-1234-1234-1234-123456789abc, enter that in the Value field.

    If you don’t know the Azure VM ID or how to find it, see Find Azure VM ID.

  6. Click Save.

    Aembit displays the new Client Workload on the Client Workloads page.

Locate your Azure VM’s Resource group and VM name using either of the following methods:

  1. Go to the Azure Portal.

  2. From the left menu or search bar, choose or search for Virtual Machines, then select your VM.

  3. Copy the Computer name and Resource group from the Properties tab of the VM details page.

    Use these values in your Aembit configuration.

  1. Open your terminal or command prompt.

  2. Use the following command to get the VM ID:

    az vm show --resource-group <your-resource-group> --name <your-vm-name> --query vmId --output tsv

    Use these values in your Aembit configuration.