Book Image

Azure Resource Manager Templates Quick Start Guide

By : Ritesh Modi
Book Image

Azure Resource Manager Templates Quick Start Guide

By: Ritesh Modi

Overview of this book

Azure Resource Manager (ARM) templates are declarations of Azure resources in the JSON format to provision and maintain them using infrastructure as code. This book gives practical solutions and examples for provisioning and managing various Azure services using ARM templates. The book starts with an understanding of infrastructure as code, a refresher on JSON, and then moves on to explain the fundamental concepts of ARM templates. Important concepts like iteration, conditional evaluation, security, usage of expressions, and functions will be covered in detail. You will use linked and nested templates to create modular ARM templates. You will see how to create multiple instances of the same resources, how to nest and link templates, and how to establish dependencies between them. You will also learn about implementing design patterns, secure template design, the unit testing of ARM templates, and adopting best practices. By the end of this book, you will understand the entire life cycle of ARM templates and their testing, and be able to author them for complex deployments.
Table of Contents (12 chapters)
Free Chapter
1
Section 1: ARM Template Foundational Skills
6
Section 2: ARM Template Advanced Concepts

Using Pester

Pester is used to test PowerShell's scripts and functions. It can be used for the unit testing of templates as well.

Pester provides the necessary infrastructure to ease the process of writing unit tests in PowerShell. It provides facilities to write test cases, execute, and report back results. It is an open source utility available as a PowerShell module. By default, it is available in Windows Server 2016 and Windows 10. For other operating systems, it can be installed using the following:

 Install-Module cmdlet

Writing unit tests using Pester is quite simple. It provides functions for declaring tests, as well as assertions. Assertions refer to the process of comparing and validating two variables. A simple Pester script in PowerShell is shown next. In this example, unit tests are written against a simple function that adds two numbers together.

Pester provides...