Quickstart: Enable Azure Automanage for virtual machines using JavaScript
Azure Automanage allows users to seamlessly apply Azure best practices to their virtual machines. This quickstart guide will help you apply a Best Practices Configuration profile to an existing virtual machine using the azure-sdk-for-js repo.
Prerequisites
- An active Azure Subscription
- An existing Virtual Machine
Note
Free trial accounts do not have access to the virtual machines used in this tutorial. Please upgrade to a Pay-As-You-Go subscription.
Important
You need to have the Contributor role on the resource group containing your VMs to enable Automanage. If you are enabling Automanage for the first time on a subscription, you need the following permissions: Owner role or Contributor along with User Access Administrator roles on your subscription.
Install required packages
For this demo, both the Azure Identity and Azure Automanage packages are required.
npm install @azure/arm-automanage
npm install @azure/identity
Import packages
Import the Azure Identity and Azure Automanage packages into the script:
const { AutomanageClient } = require("@azure/arm-automanage");
const { DefaultAzureCredential } = require("@azure/identity");
Authenticate to Azure and create an Automanage client
Use the Azure Identity package to authenticate to Azure and then create an Automanage Client:
const credential = new DefaultAzureCredential();
const client = new AutomanageClient(credential, "<subscription ID>");
Enable best practices configuration profile to an existing virtual machine
let assignment = {
"properties": {
"configurationProfile": "/providers/Microsoft.Automanage/bestPractices/AzureBestPracticesProduction"
}
}
// assignment name must be named "default"
await client.configurationProfileAssignments.createOrUpdate("default", "resourceGroupName", "vmName", assignment);
Next steps
Learn how to conduct more operations with the JavaScript Automanage Client by visiting the azure-sdk-for-js repo.