Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 2.96 KB

Bicep-Challenge-06.md

File metadata and controls

40 lines (24 loc) · 2.96 KB

Challenge 6 - Bicep Modules

< Previous Challenge - Home - Next Challenge>

Introduction

The goals for this challenge include understanding:

  • Bicep modules allow for granular resource management and deployment
  • How ARM Bicep modules improves upon ARM JSON linked templates which require staging artifacts in a location accessible to the Azure Resource Manager

An application may require the composition of many underlying infrastructure resources in Azure. As you have now seen with just a single VM and its dependencies, an ARM template can grow large rather quickly.

Bicep introduces the concept of modules. These are similar to linked templates but are much simpler to work with. When you write a Bicep file you can embed another Bicep file as a module. When your template is transpiled a single ARM template is produced with your module included within it. This is often a much simpler approach than dealing with linked templates.

When templates get big, they become monoliths. They are hard to manage. By breaking your templates up into smaller modules, you can achieve more flexibility in how you manage your deployments.

In many companies, deployment of cloud infrastructure may be managed by different teams. For example, a common network architecture and its security settings may be maintained by an operations team and shared across multiple application development teams.

The network architecture and security groups are typically stable and do not change frequently. In contrast, application deployments that are deployed on the network may come and go.

Description

In this challenge you will separate your existing Bicep template deployment into two sets of modules.

  • Separate networking resources (Virtual Network & Network Security Groups) in to their own module.
  • Separate the VM and its dependencies into their own module
  • Create a new Bicep template that deploys each of the new modules.
  • Ensure parameters flow through from the new template to each of the modules

By separating the networking resources into their own modules, an application team can test its infrastructure deployment in a test network. At a later point in time, the networking module can be replaced with a production module provided by the company's operations team.

Success Criteria

  1. Verify that the Bicep CLI does not show any errors and correctly emits an ARM JSON template that includes all of the resources in the Bicep modules.
  2. Verify that all resources deploy as before when you had a single Bicep template

Learning Resources