Introduction to Bicep: Microsoft Azure’s cooler IaC tool

Related to my previous post (found here: https://www.creakmon.com/learning-arm-templates-my-first-step-into-azure-infrastructure-as-code/), I found out that Azure also supports another native Infrastructure as Code (IaC) tool called Bicep. Thankfully, it looks like the people over at Microsoft realized that trying build and reading an ARM Template using JSON is not considered a good time so they created Bicep as …

Learning ARM Templates: My First Step into Azure Infrastructure as Code

Azure Resource Manager (ARM) templates can look intimidating at first, mostly because of the JSON format with all the quotes and curly brackets. But once you actually look at them, they become much more manageable when you understand that JSON organizes data in key-value pairs, with a colon between the key and the value, and …