What the Hack: Infrastructure As Code with ARM Templates & PowerShell DSC

Introduction

DevOps is a journey not a destination. Implementing Infrastructure-as-Code is one of the first steps you will take on your DevOps journey!

When implementing an application environment in the cloud, it is important to have a repeatable way to deploy the underlying infrastructure components as well as your software into the target environment. This includes resources such as:

The best way to make deployments repeatable is to define them with code, hence the term “Infrastructure as Code” (aka IAC). There are multiple technologies that enable you to define your IaC. Some of these include:

This hack is focused on using ARM Templates and PowerShell DSC to implement your IaC. It does not mean this is the only way to implement IaC. It is just one way amongst many. If you want to learn how to do IaC in Azure with other technologies, try one of our other IaC hacks for Terraform or Ansible.

Learning Objectives

This hack will help you learn:

Challenges

This hack is split into two parts:

  1. ARM Template Challenges
  2. PowerShell DSC Challenges

The challenges build upon each other incrementally. You will start by creating a “Hello World” ARM template to get you familiar with the tools & syntax. Then you extend your template incrementally to deploy multiple infrastructure resources in Azure.

If you don’t have time to complete all of the ARM template challenges, we recommend switching gears and getting hands on with PowerShell DSC after you have successfully completed the ARM template challenge to deploy a Windows VM in Azure.

The PowerShell DSC challenges start by having you deploy a simple DSC script. Further incremental challenges will help you configure a Windows VM to become a File Server.

ARM Template Challenges

  1. “Hello World” ARM Template
    • Develop a simple template that takes an input and returns an output
  2. Deploy a Virtual Network
    • Learn how to find Azure resource values
  3. Open Some Ports
    • Learn about variables, dependencies, and idempotency
  4. Secret Values with Azure Key Vault
    • Learn how to not lose your job
  5. Deploy a Virtual Machine
    • Windows, Linux, or both. It’s your choice. If you choose Windows, you can switch gears and do the PowerShell DSC challenges afterwards
  6. Configure a Linux Server
    • Learn about custom script extensions
  7. Implement High Availability
    • Learn about availability sets, looping, and load balancers
  8. SSH to your Highly Available VMs
    • Learn about network access policies
  9. Deploy a Virtual Machine Scale Set
    • Learn about scalability for Infrastructure on Azure
  10. Configure VM Scale Set to run a Web Server
    • Learn about custom script extensions
  11. Implement Auto Scaling
    • Learn about declarative management of policies and actions
  12. Linked Templates
    • Learn how create smaller templates for granular resource management

PowerShell DSC Challenges

  1. Deploy a Windows Virtual Machine
    • Get yourself ready to develop your IoT solution
  2. Simple DSC
    • Learn about built in DSC Resources on Windows Server
  3. File Server DSC
    • Learn about external DSC Resources from PowerShell Gallery

Prerequisites

You will want to prepare your machine with the following to help complete the Challenges for this hack:

For more details, see: IaC ARM-DSC Hack - Prerequisites

Repository Contents

Contributors