Skip to content

Latest commit

 

History

History

Lab3

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Lab 3 - Develop Your First Bicep Template

Purpose: The purpose of this lab is to develop your first Bicep template. Steps:

  1. Open Visual Studio Code Termianl and run az login to login to your Azure account.

  2. Create a new file called "rg.bicep" in the "bicep" folder.

  3. Write a configuration that deploys:

  4. Deploy into the resource group you created in Lab 1 by running the following command in the terminal:

    az deployment group create --resource-group <resource-group-name> --template-file rg.bicep
  5. Make sure you use parameters and variables in your Bicep file to make it reusable and easy to maintain.