Hands-on Demo – Deploy a Bicep file from Azure Pipelines


LearnAzureDevOps-O5

Hands-on Demo – Deploy a Bicep file from Azure Pipelines

In this demo, we'll show how to deploy an Azure resource using a Bicep file through Azure Pipelines. Azure Pipelines is a cloud service that automates the build and release process for your applications. By using a Bicep template, you can automate your infrastructure provisioning and deployments.

We'll set up a pipeline that:

  1. Deploys an Azure Virtual Network and Subnet using a Bicep file.

  2. Uses a Service Principal for authentication.

Steps Overview

  1. Create the Bicep file in your repository.

  2. Set up an Azure Service Principal for authentication.

  3. Create an Azure Pipeline YAML file for deployment.

  4. Run the pipeline to deploy the Bicep template to Azure.

1. Create the Bicep File in Your Repository

Create a simple Bicep file (main.bicep) in your repository to deploy a Virtual Network and Subnet.

Example: main.bicep

Commit this Bicep file to your Git repository.

2. Set Up the Azure Service Principal for Authentication

To deploy resources to Azure via Azure Pipelines, you need to authenticate using a Service Principal (SP). The Service Principal will allow Azure Pipelines to interact with your Azure resources securely.

Following are the steps to create an Azure Service Principal.

  1. Log in to Azure CLI:

  1. Create the Service Principal and assign it a role (e.g., Contributor):

This will output the following:

  • appId: The client ID for the service principal.

  • password: The client secret (you will need this).

  • tenant: The tenant ID for your Azure Active Directory.

  1. Save the following information (you will need it for the Azure Pipelines service connection):

    • AZURE_CLIENT_ID: appId from the output.

    • AZURE_CLIENT_SECRET: password from the output.

    • AZURE_TENANT_ID: tenant from the output.

    • AZURE_SUBSCRIPTION_ID: Your Azure subscription ID.

  2. Create a Service Connection in Azure Pipelines:

    • Go to your Azure DevOps project.

    • Navigate to Project SettingsService Connections.

    • Click New Service ConnectionAzure Resource Manager.

    • Select Service Principal (Automatic), then provide the details for your Service Principal (Client ID, Client Secret, Tenant ID, and Subscription ID).

    • Click Verify and Save.

3. Create the Azure Pipeline YAML File

Now, let’s create an Azure Pipeline YAML file that will deploy the Bicep template to Azure.

Example: `azure-pipelines.yml

Explanation of the YAML file:

  1. Trigger: This pipeline triggers whenever changes are pushed to the main branch.

  2. Variables:

    • location: Defines the region where the resources will be deployed.

    • vnetName: Specifies the name of the Virtual Network.

    • subnetName: Specifies the name of the subnet.

    • resourceGroupName: Specifies the name of the resource group where resources will be deployed.

  3. Steps:

    • Checkout: This step checks out the repository to get the latest code (including the Bicep file).

    • Setup Azure CLI: Installs and configures Azure CLI on the agent.

    • Azure Login: Logs into Azure using the Azure Service Connection created earlier.

    • Deploy Bicep Template: This step runs the Azure CLI command to deploy the Bicep template to the specified Azure resource group.

    • Verify Deployment (Optional): After deployment, it verifies the Virtual Network and Subnet in Azure.

4. Run the Pipeline

  1. Commit the YAML file: Once the azure-pipelines.yml file is added, commit and push it to your repository.

  2. Run the Pipeline:

    • Once you push your changes to the repository, the pipeline will automatically trigger.

    • Navigate to Azure DevOpsPipelines → Select your pipeline → Run Pipeline.

  3. Monitor the Pipeline:

    • You can see the progress of each step in the Azure DevOps UI.

    • If any step fails, the logs will help you debug the issue.

5. Verify the Deployment

After the pipeline runs successfully, verify the deployment either in the Azure Portal or by using the Azure CLI.

Alternatively, you can check the Azure DevOps logs to verify that the deployment was successful.

6. Summary

With the steps above, you have successfully set up an Azure Pipeline to deploy a Bicep template to Azure.

The pipeline:

  1. Automatically triggers on a push to the main branch.

  2. Uses Azure CLI and a Service Principal to authenticate and deploy the resources.

  3. Verifies the deployed resources.

This provides a robust CI/CD pipeline for deploying infrastructure as code with Bicep on Azure. You can extend this pipeline to support more complex deployments or integrate additional steps such as testing and approvals.

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.