DevOps is a journey not a destination. Implementing Infrastructure-as-Code is one of the first steps you will need to take!
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:
- Virtual Networks, Network Security Groups (Firewalls), Public IPs, Virtual Machines, Storage (Disks)
- PaaS Services (Azure SQL, App Service, etc)
- Configuration Management (installing & configuring software on VMs)
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 achieve this. Some of these include:
- ARM Templates with JSON
- ARM Templates with Bicep
- PowerShell Desired State Configuration (DSC)
- HashiCorp's Terraform & Packer
- Ansible, Chef, Puppet, Salt Stack, and others
This hack is focused on using Bicep to implement your IaC. It does not mean this is the only way to implement IaC, it's just one of many ways. If you want to learn how to do IaC in Azure with other technologies, try one of our other IaC hacks for ARM Templates & PowerShell DSC, Terraform or Ansible.
This hack will help you learn:
- How ARM Templates with Bicep can be used to deploy Azure infrastructure
The challenges build upon each other incrementally. You will start by creating a basic Bicep template to get you familiar with the tools & syntax. Then you extend your template incrementally to deploy multiple infrastructure resources to Azure.
- Challenge 0: Pre-Requisites - Ready, Set, Go!
- Prepare your workstation to work with Azure
- Challenge 1: Basic Bicep
- Develop a simple Bicep file that takes inputs to create an Azure Storage Account, and returns outputs
- Challenge 2: Bicep expressions and referencing resources
- Learn Bicep expressions and referencing resources
- Challenge 3: Advanced resource declarations
- Advanced resource declarations
- Challenge 4: Secret Values with Azure Key Vault
- Learn how NOT to lose your job!
- Challenge 5: Deploy a Virtual Machine
- Create complex deployment with multiple dependencies
- Challenge 6: Bicep Modules
- Learn how create resusable modules for granular resource management
- Challenge 7: Configure VM to run a Web Server
- Learn about custom script extensions
- Challenge 8: Deploy a Virtual Machine Scale Set
- Create complex deployment with Bicep using modules
- Challenge 9: Configure VM Scale Set to run a Web Server
- Learn about custom script extensions with VM Scale Sets
- Challenge 10: Configure VM Scale Set to run a Web Server using cloud-init
- How cloud-init scripts can be run on a Virtual Machine Scale Set (VMSS)
- Challenge 11: Deploy resources to different scopes
- Learn how to deploy resources to different scopes
You will want to prepare your machine with the following to help complete the Challenges for this hack:
- Azure Subscription
- Windows Subsystem for Linux (Windows 10-only)
- Azure CLI
- PowerShell Cmdlets for Azure
- Visual Studio Code
- Bicep plugins for VS Code
../Student
- Bicep challenges
../Student/Resources
- Shell scripts needed to complete the challenges
- Victor Viriya-ampanond
- William Salazar
- Peter Laudati
- Pete Rodriguez
- Tim Sullivan
- Mark Garner
- Jesse Mrasek
- Andy Huang