Ansible Pilot

Creating an Azure Virtual Machine Scale Set using Ansible

Effortlessly Deploy and Scale Your Infrastructure with Ansible and Azure Scale Sets.
April 30, 2023
Access the Complete Video Course and Learn Quick Ansible by 200+ Practical Lessons

Creating an Azure Virtual Machine Scale Set using Ansible

In the world of cloud computing, scalability is a critical requirement for many organizations. When it comes to managing virtual machines, Azure Virtual Machine Scale Sets is a powerful solution that provides automatic scaling of VMs. Ansible, the popular configuration management tool, also provides a module for managing VM Scale Sets in Azure. In this article, we will explore how to create an Azure Virtual Machine Scale Set using Ansible.

Overview of Azure Virtual Machine Scale Sets

Before we dive into the details of creating a VM Scale Set, let’s first understand what it is and how it works. A VM Scale Set is a group of identical, load-balanced virtual machines that can automatically scale up or down based on demand or a schedule. This makes it easy to deploy and manage a set of VMs, while also providing high availability and scalability.

A VM Scale Set can be created in Azure using either the Azure Portal, Azure CLI, or Azure PowerShell. In this article, we will use Ansible to create the VM Scale Set.

Creating an Azure VM Scale Set with Ansible

The Ansible module for Azure VM Scale Sets is azure_rm_virtualmachinescaleset. This module provides a simple way to create, update, and delete VM Scale Sets in Azure. Let’s take a look at the playbook in detail.

The playbook starts with defining the hosts and variables required for creating the VM Scale Set. The variables include vmss_vm_size, vmss_admin_username, vmss_capacity, and vmss_tier. These variables are used to define the size of each VM, the admin username for the VMs, the number of VMs in the Scale Set, and the pricing tier for the Scale Set.

The playbook then uses the azure.azcollection.azure_rm_keyvaultsecret_info module to retrieve the administrator password for the virtual machines from an Azure Key Vault. This module retrieves the password and registers it as a variable admin_password.

The playbook then prints debug information about the administrator password using the ansible.builtin.debug module.

Finally, the azure_rm_virtualmachinescaleset module is used to create the VM Scale Set with the specified configuration. The azure_rm_virtualmachinescaleset module creates the Scale Set with the following configuration:

Code

This Ansible playbook creates an Azure Virtual Machine Scale Set with the specified configuration. The playbook defines the following variables:

The playbook then performs the following tasks:

  1. Uses the azure.azcollection.azure_rm_keyvaultsecret_info module to retrieve the administrator password for the virtual machines from an Azure Key Vault.
  2. Prints debug information about the administrator password.
  3. Uses the azure_rm_virtualmachinescaleset module to create the scale set with the specified configuration.

The azure_rm_virtualmachinescaleset module creates the scale set with the following configuration:

The full Ansible Playbook looks like the following:

---
- name: Create Azure Scale Set
  hosts: all
  vars:
    vmss_vm_size: Standard_DS1_v2
    vmss_admin_username: sysadmin
    vmss_capacity: 2
    vmss_tier: Standard
  tasks:
  - name: Get administrator password
    azure.azcollection.azure_rm_keyvaultsecret_info:
      name: VMAdministratorPassword
      vault_uri: "https://{{ vmss_vault_name }}.vault.azure.net"
    register: admin_password

  - name: Print debug
    ansible.builtin.debug:
      msg:
        - "VM admin password id: {{ admin_password['secrets'][0]['sid'] }}"
        - "VM admin password version: {{ admin_password['secrets'][0]['version'] }}"

  - name: Create Scale Set
    azure.azcollection.azure_rm_virtualmachinescaleset:
      resource_group: "{{ vmss_resource_group }}"
      name: "{{ vmss_name }}"
      vm_size: "{{ vmss_vm_size }}"
      admin_username: "{{ vmss_admin_username }}"
      admin_password: {{ admin_password['secrets'][0]['secret'] }}
      ssh_password_enabled: true
      capacity: "{{ vmss_capacity }}"
      virtual_network_name: "{{ vmss_virtual_network_name }}"
      subnet_name: "{{ vmss_subnet_name }}"
      upgrade_policy: Manual
      tier: "{{ vmss_tier }}"
      managed_disk_type: Standard_LRS
      os_disk_caching: ReadWrite
      image:
        offer: UbuntuServer
        publisher: Canonical
        sku: 20.04-LTS
        version: latest
      application_gateway: "{{ vmss_appgw_name }}"
      data_disks:
        - lun: 0
          disk_size_gb: 20
          managed_disk_type: Standard_LRS
          caching: ReadOnly
      custom_data: "{{ lookup('file', '{{ vmss_custom_data_file }}') }}"

Recap

Azure Virtual Machine Scale Sets provide a scalable and highly available solution for managing VMs in the cloud. Using Ansible, we can easily create, update, and delete VM Scale Sets in Azure. The azure_rm_virtualmachinescaleset module provides a simple way to manage VM Scale Sets using Ansible. With this module, we can define the configuration of the Scale Set and create multiple identical VMs with a single command.

Subscribe to the YouTube channel, Medium, and Website, X (formerly Twitter) to not miss the next episode of the Ansible Pilot.

Academy

Learn the Ansible automation technology with some real-life examples in my

My book Ansible By Examples: 200+ Automation Examples For Linux and Windows System Administrator and DevOps

BUY the Complete PDF BOOK to easily Copy and Paste the 250+ Ansible code

Want to keep this project going? Please donate

Access the Complete Video Course and Learn Quick Ansible by 200+ Practical Lessons
Follow me

Subscribe not to miss any new releases