Tag: bicep

  • How to migrate from ARM templates to Bicep

    How to migrate from ARM templates to Bicep

    Looking to move from writing your Azure Resource Manager (ARM) templates in JSON to Bicep? The good news is Microsoft have provided some tooling to make it relatively straightforward too migrate. 1. Run the Bicep command line interface (CLI) decompile command Before getting started with Bicep, you’ll want to make sure that you’ve got the…

  • Getting started with Azure Bicep

    Getting started with Azure Bicep

    Bicep is a new language from Microsoft that allows you to easily specify your Azure infrastructure as code. It’s an improvement on writing Azure Resource Manager (ARM) templates directly by better supporting features such as type safety and code modularity and reuse. That said, Bicep still has a very close relationship with ARM templates. In…