Deploy a local Ubuntu server hosted with Vagrant and connect it to Azure Arc

This article provides guidance for deploying a local Ubuntu virtual machine using Vagrant and connects it as an Azure Arc-enabled server resource.

Prerequisites

  1. Clone the Azure Arc Jumpstart repository.

    git clone https://github.com/microsoft/azure_arc.git
    
  2. Install or update Azure CLI to version 2.7 and above. Use the following command to check your current installed version.

    az --version
    
  3. Vagrant relies on an underlying hypervisor. For this guide, we are using Oracle VM VirtualBox.

    1. Install VirtualBox.

    2. Install Vagrant

  4. Create an Azure service principal.

    To connect the Vagrant virtual machine to Azure Arc, an Azure service principal assigned with the Contributor role is required. To create it, sign in to your Azure account and run the following command. You can also run this command in Azure Cloud Shell.

    az login
    az account set -s <Your Subscription ID>
    az ad sp create-for-rbac -n "<Unique SP Name>" --role contributor --scopes "/subscriptions/<Your Subscription ID>"
    

    For example:

    az ad sp create-for-rbac -n "http://AzureArcServers" --role contributor --scopes "/subscriptions/00000000-0000-0000-0000-000000000000"
    

    The output should look like this:

    {
      "appId": "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
      "displayName": "http://AzureArcServers",
      "password": "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
      "tenant": "XXXXXXXXXXXXXXXXXXXXXXXXXXXX"
    }
    

    Note

    We highly recommend that you scope the service principal to a specific Azure subscription and resource group.

  5. The Vagrant file executes a script on the VM OS to install all the needed artifacts and to inject environment variables. Edit the scripts/vars.sh shell script to match the Azure service principal you created.

    • subscriptionId = your Azure subscription ID
    • appId = your Azure service principal name
    • password = your Azure service principal password
    • tenantId = your Azure tenant ID
    • resourceGroup = Azure resource group name
    • location = Azure region

Deployment

Like any Vagrant deployment, a vagrantfile and a Vagrant box is needed. At a high-level, the deployment will:

  • Download the Ubuntu 16.04 image file Vagrant box
  • Execute the installation script

After editing the scripts/vars.sh script to match your environment, from the Vagrantfile folder, run vagrant up. Since this is the first time creating the VM, the first run will be much slower than the ones to follow, because the deployment is downloading the Ubuntu box for the first time.

A screenshot of the vagrant up command.

Once the download is complete, the provisioning begins. As shown in the following screenshot, the process takes no longer than three minutes.

A screenshot of a completed vagrant up command.

Upon completion, you'll have a local Ubuntu VM deployed, connected as a new Azure Arc-enabled server, inside a new resource group.

A screenshot of an Azure Arc-enabled server in the Azure portal.

A screenshot of details from an Azure Arc-enabled server in the Azure portal.

Semi-automated deployment (optional)

The last step is to register the VM as a new Azure Arc-enabled server resource.

Another screenshot of the vagrant up command.

If you want to demo/control the actual registration process, complete the following steps:

  1. In the install_arc_agent shell script, comment out the run connect command section and save the file. You can also comment out or change the creation of the resource group.

    A screenshot of the azcmagent connect command.

    A screenshot of the az group create command.

  2. SSH to the VM using the vagrant ssh command.

    A screenshot of an SSH key connecting to the Vagrant machine.

  3. Run the same azcmagent connect command you commented out using your environment variables.

    Another screenshot of the azcmagent connect command.

Delete the deployment

To delete the entire deployment, run the vagrant destroy -f command. The vagrantfile includes a before: destroy Vagrant trigger, which will run a script to delete the Azure resource group before destroying the actual VM.

A screenshot of the vagrant destroy command.