Hands-on Demo – Create Bicep templates


LearnAzureDevOps-O5

Hands-on Demo – Create Bicep templates

Let’s go step-by-step and create a simple Bicep template. This will demonstrate how to structure and define parameters, resources, outputs, and other features such as loops and conditions.

We'll create a Bicep template to deploy an Azure Virtual Network (VNet) with a subnet, and use a parameter to conditionally create a storage account.

1. Creating Bicep Template

Setting Up Your Environment

Ensure you have the following installed:

  1. Visual Studio Code with the Bicep extension.

  2. Bicep CLI installed (either via package managers like winget, choco, or manual installation).

Create the Bicep Template

Let’s create a simple deployment template that:

  1. Accepts parameters for location, VNet name, and whether to create a storage account.

  2. Creates a VNet with a subnet.

  3. Conditionally creates a storage account based on the parameter.

Define Parameters for Location and VNet Configuration

We’ll define the following parameters:

  1. location: Specifies where the resources will be created.

  2. vnetName: Name of the Virtual Network.

  3. subnetName: Name of the Subnet.

  4. createStorageAccount: Boolean flag to decide whether to create a storage account.

Define Variables for Address Prefixes

We will define variables for the address prefixes of the Virtual Network and Subnet.

Define Resources (VNet, Subnet, and Conditional Storage Account)

  1. VNet: We’ll create a Virtual Network with a single subnet.

  2. Storage Account: We’ll create a storage account conditionally, based on the createStorageAccount parameter.

Outputs

The template will output the IDs of the created resources (VNet, Subnet, and Storage Account).

2. Create the Bicep File (main.bicep)

Here's the Bicep template that will deploy a Virtual Network and optionally a Storage Account:

3. How the Template Works

Parameters Section

  1. location: Specifies where to deploy the resources, with a default value of 'East US'.

  2. vnetName: Name of the Virtual Network.

  3. subnetName: Name of the subnet within the VNet.

  4. createStorageAccount: A boolean flag that determines whether to create a storage account (default: false).

Variables Section

  1. addressPrefix: The address space of the Virtual Network (10.0.0.0/16).

  2. subnetPrefix: The address prefix for the subnet (10.0.1.0/24).

Resources Section

  1. Virtual Network (VNet): Creates a VNet with the specified name, location, and address space.

  2. Subnet: Creates a subnet within the previously created VNet, using the subnet address prefix.

  3. Conditional Storage Account: Only creates the storage account if the createStorageAccount parameter is true.

Outputs Section

  1. vnetId: The ID of the created Virtual Network.

  2. subnetId: The ID of the created subnet.

  3. storageAccountId: The ID of the created storage account (if created).

4. Deploy the Template

To deploy this template, you’ll use the Azure CLI or PowerShell.

Using Azure CLI:

Open a terminal window and navigate to the directory where the main.bicep file is located.

Deploy with Parameters:

If you want to create a storage account, pass true for the createStorageAccount parameter:

If you don’t want to create the storage account, just leave the default value (false):

Using PowerShell:

5. Review the Output

Once the deployment is complete, you can review the output from the deployment.

  1. If the createStorageAccount parameter was true, you’ll see the storage account ID in the output.

  2. If false, the output will not include a storage account ID.

You can also check the created resources in the Azure Portal, or use the following Azure CLI command to verify the resources:

6. Modify the Template

You can extend this Bicep template by adding more resources or changing the logic.

For example:

  1. Add a public IP address for the VNet.

  2. Add more subnets by looping over an array of subnet names.

  3. Use conditions to deploy different types of resources (like different storage account types).

Example: Add a Loop to Create Multiple Subnets

You can modify the subnet resource section to create multiple subnets based on an array of subnet names:

This would create multiple subnets with different address prefixes.

Summary

This demo showcased how to create a simple Bicep template for deploying a Virtual Network with a subnet, and conditionally creating a storage account. By leveraging parameters, variables, resources, outputs, and features like loops and conditional deployments, you can build flexible, reusable infrastructure templates for Azure.

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.