Deploying BICEP using Azure DevOps Pipeline
Recently I was more looking into bicep side of things in Azure. And I wanted to deploy the bicep templates using azure DevOps. π
I came up with the following workflow to deploy the templates to Azure.
I believe this approach is quite good because
- Using the standard approach of build and deploy
- I will get to see if there are any errors in bicep files during the build
- Saving to artifacts will give the opportunity to go back instantly
Azure DevOps Repository
I will be using a native Azure DevOps repository to hold the bicep code. Feel free to use GitHub also if you prefer.
I have created a new project inside my DevOps organization and uploaded the Bicep code
Build Pipeline
Idea behind this build pipeline is the represent the build stage by compiling the bicep code in to Arm template and will be saving json file inside the artefacts
Following are the steps
Note:Β Code is saved in my public GitHub. Head out there are and grab it
My yml file does have 2 tasks
Task 1 - Compiling the bicep template into an arm template using Az PowerShell modules
Task 2 β Saving the converted ARM template into artifacts.
Once all done hit save and exit or you can run the pipeline to make sure everything works. Now letβs move to the deploy component
Release Pipeline
In the release pipeline we will be using the successful built arm template in the above-mentioned phase to deploy it to the Azure. We will be selecting the ARM template from the Artifacts location and will be adding the ARM template deployment job.
Let look at how we can achieve this
Note: When selecting the template section in the form you can hit the 3 dots in Infront of the text box and select our artefacts as below
Once done you are done with the configurations. Simply you are run the build pipeline and then the release pipeline. Based on the configurations you select your deployment will get completed.
If you have any questions, please comment down below. Will get back to you as soon as possible