Hands-on Demo – Deploy a Bicep file from GitHub Workflows


LearnAzureDevOps-O5

Hands-on Demo – Deploy a Bicep file from GitHub Workflows

In this demo, we will show how to deploy an Azure resource using a Bicep file via GitHub Actions. GitHub Actions allow you to automate your workflows, and in this case, we will set up a CI/CD pipeline to deploy an Azure resource using a Bicep template from a GitHub repository.

Steps Overview

  1. Create the Bicep file in your GitHub repository.

  2. Set up the Azure Service Principal for authentication.

  3. Create a GitHub Actions workflow file (main.yml) for deploying the Bicep file to Azure.

  4. Deploy the Bicep file via the GitHub Actions pipeline.

1. Create the Bicep File in GitHub Repository

First, create a Bicep file in your GitHub repository.

For this example, we’ll create a simple Bicep template that deploys an Azure Virtual Network and Subnet.

Example: `main.bicep

Ensure this Bicep file is committed to your GitHub repository.

Let’s now set up the GitHub Actions pipeline to deploy this template.

2. Set Up the Azure Service Principal for Authentication

To deploy resources to Azure from GitHub Actions, you’ll need to authenticate using an Azure Service Principal (SP). The service principal allows GitHub Actions to interact with Azure resources securely.

Follow below given steps to create an Azure Service Principal.

  1. Log in to Azure CLI:

  2. 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.

  3. Save the following information (you’ll need it for the GitHub secrets):

    • 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.

  4. Set up GitHub Secrets:

    • Go to your GitHub repository’s SettingsSecrets.

    • Add the following secrets:

      • AZURE_CLIENT_ID

      • AZURE_CLIENT_SECRET

      • AZURE_TENANT_ID

      • AZURE_SUBSCRIPTION_ID

3. Create the GitHub Actions Workflow File

Next, create a GitHub Actions workflow file that will automate the deployment process.

Steps to Create the Workflow File:

  1. In your GitHub repository, create a new directory .github/workflows/.

  2. Inside that directory, create a new file deploy.yml.

  3. Here's the deploy.yml GitHub Actions workflow file:

Explanation of the Workflow File:

  1. Trigger: The workflow is triggered on a push to the main branch.

  2. Steps:

    • Checkout: This step checks out the repository code.

    • Set up Azure CLI: Installs Azure CLI on the GitHub runner.

    • Azure Login: Logs in to Azure using the service principal credentials stored in GitHub secrets.

    • Deploy Bicep Template: This step runs the Azure CLI command to deploy the main.bicep file to the specified Azure resource group. It uses the az deployment group create command.

    • Show Deployed Resources (Optional): This step verifies the deployment by showing the deployed VNet and subnet in the Azure portal.

4. Deploy the Bicep Template via GitHub Actions

Once the workflow file is created, push your changes to the main branch:

5. Monitor the Workflow

After pushing the changes to the main branch, GitHub Actions will automatically start running the workflow.

You can monitor the status of the deployment from the Actions tab of your GitHub repository.

  1. Go to your GitHub repository.

  2. Click on the Actions tab.

  3. You will see the workflow running (it may take a minute or two).

  4. If the workflow runs successfully, your resources will be deployed to Azure.

  5. You can also see logs to troubleshoot if needed.

6. Verify the Deployment

Once the deployment is complete, go to the Azure Portal and verify that the resources (Virtual Network and Subnet) were created successfully.

Alternatively, you can use Azure CLI to check:

7. Summary

With the above steps, you've automated the process of deploying a Bicep file to Azure using GitHub Actions.

This setup:

  1. Ensures that your Bicep file can be deployed continuously and consistently.

  2. Provides a robust, automated deployment pipeline, reducing manual intervention.

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.